oauth2的四种模式和刷新令牌的请求地址及参数

1.1获取code码
http://127.0.0.1:9091/oauth/authorize?response_type=code&client_id=client1
1.2用code模式获取token
http://127.0.0.1:9091/oauth/token?client_id=client1&client_secret=123&grant_type=authorization_code&code=MnPDgC

2.简化授权码模式
http://localhost:8080/oauth/authorize?response_type=token&client_id=banana&redirect_uri=http://baidu.com
http://127.0.0.1:9091/oauth/authorize?response_type=token&client_id=client1

3.password模式获取token
http://127.0.0.1:9091/oauth/token?client_id=client1&client_secret=123&grant_type=password&username=admin&password=123

4.code模式获取token
http://127.0.0.1:9091/oauth/token?client_id=client1&client_secret=123&grant_type=authorization_code&code=MnPDgC

5.通过刷新令牌获取token
http://127.0.0.1:9091/oauth/token?client_id=client1&client_secret=123&grant_type=refresh_token&refresh_token=16a423f7-210d-432d-967e-827ff5f54554

上一篇:扩展 jwt 解决 oauth2 性能瓶颈


下一篇:spring security+oauth2的认证中心