spring-oauth-server/others/oauth_test.txt

96 lines
4.4 KiB
Plaintext
Raw Normal View History

2015-03-18 12:39:54 +00:00
适用范围v3.0.0 之前的版本。
2015-03-18 12:39:54 +00:00
方式1:基于浏览器 (访问时后跳到登录页面,登录成功后跳转到redirect_uri指定的地址) [GET]
说明:只能使用admin或unity 账号登录才能有权限访问,若使用mobile账号登录将返回Access is denied
2022-04-30 16:01:11 +00:00
http://localhost:8080/oauth/authorize?client_id=unity-client&redirect_uri=http%3a%2f%2flocalhost%3a8080%2fspring-oauth-server%2funity%2fdashboard&response_type=code&scope=read
2015-03-18 12:39:54 +00:00
2018-04-20 16:35:51 +00:00
说明: 由于mobile-client只支持password,refresh_token, 所以不管用哪个账号登录后都将返回 OAuth Error
2022-04-30 16:01:11 +00:00
http://localhost:8080/oauth/authorize?client_id=mobile-client&redirect_uri=http%3a%2f%2flocalhost%3a8080%2fspring-oauth-server%2fm%2fdashboard&response_type=code&scope=read
2015-03-18 12:39:54 +00:00
响应的URL如:
2022-04-30 16:01:11 +00:00
http://localhost:8080/unity/dashboard?code=hGQ8qx
2015-03-18 12:39:54 +00:00
2021-05-16 15:06:38 +00:00
通过code换取access_token [POST] (注意这一步用httpclient在程序中调用不要在浏览器中)
2022-04-30 16:01:11 +00:00
http://localhost:8080/oauth/token?client_id=unity-client&client_secret=unity&grant_type=authorization_code&code=hGQ8qx&redirect_uri=http%3a%2f%2flocalhost%3a8080%2fspring-oauth-server%2funity%2fdashboard
2015-03-18 12:39:54 +00:00
2021-05-16 15:06:38 +00:00
方式2:基于客户端 (注意参数中的username,password,对应用户的账号,密码) [POST] (注意这一步用httpclient在程序中调用不要在浏览器中)
2022-04-30 16:01:11 +00:00
http://localhost:8080/oauth/token?client_id=mobile-client&client_secret=mobile&grant_type=password&scope=read&username=mobile&password=mobile
2015-03-18 12:39:54 +00:00
2018-04-20 16:35:51 +00:00
说明:由于unity-client不支持password,所以若用unity-client通过password方式去授权,将返回 invalid_client
2022-04-30 16:01:11 +00:00
http://localhost:8080/oauth/token?client_id=unity-client&client_secret=unity&grant_type=password&scope=read&username=mobile&password=mobile
2015-03-18 12:39:54 +00:00
获取access_token响应的数据如:
{"access_token":"3420d0e0-ed77-45e1-8370-2b55af0a62e8","token_type":"bearer","refresh_token":"b36f4978-a172-4aa8-af89-60f58abe3ba1","expires_in":43199,"scope":"read write"}
获取access_token后访问资源 [GET]
2022-04-30 16:01:11 +00:00
http://localhost:8080/unity/dashboard?access_token=89767569-5b78-4b26-ae2d-d361aa3e6bf9
2015-03-18 12:39:54 +00:00
2021-05-16 15:06:38 +00:00
刷新access_token [POST] (注意这一步用httpclient在程序中调用不要在浏览器中)
2022-04-30 16:01:11 +00:00
http://localhost:8080/oauth/token?client_id=mobile-client&client_secret=mobile&grant_type=refresh_token&refresh_token=b36f4978-a172-4aa8-af89-60f58abe3ba1
2021-05-16 15:06:38 +00:00
Restful OAuth2 Test [POST] (注意这一步用httpclient在程序中调用不要在浏览器中)
2018-04-20 16:41:05 +00:00
URL: /oauth/rest_token
2016-03-07 16:36:37 +00:00
ContentType: application/json
2022-04-30 16:01:11 +00:00
DEMO URL: http://localhost:8080/oauth2/rest_token
2018-04-20 16:41:05 +00:00
Request Body:
{"grant_type":"client_credentials","scope":"read","client_id":"credentials","client_secret":"credentials","username":"user","password":"123"}
2016-03-07 16:36:37 +00:00
Response Body:
{
"access_token": "cd165ebc-562d-45df-8488-9f1ba947553e",
"token_type": "bearer",
"expires_in": 43193,
"scope": "read"
}
2015-05-19 12:54:25 +00:00
更多的测试请访问
2018-04-20 16:41:05 +00:00
https://gitee.com/mkk/spring-oauth-client
2015-05-19 12:54:25 +00:00
------------------------------------------------------------------------------------------------
grant_type(授权方式)
1.authorization_code 授权码模式(即先登录获取code,再获取token)
2.password 密码模式(将用户名,密码传过去,直接获取token)
3.refresh_token 刷新token
4.implicit 简化模式(在redirect_uri 的Hash传递token; Auth客户端运行在浏览器中,如JS,Flash)
5.client_credentials 客户端模式(无用户,用户向客户端注册,然后客户端以自己的名义向'服务端'获取资源)
scope
1.read
2.write
3.trust
2015-05-15 09:11:41 +00:00
------------------------------------------------------------------------------------------------
Resource API
Use it get resource-server resources after auth successful. will use it in <spring-oauth-client> project.
(retrieve current logged user information)
[ROLE_UNITY]
2022-04-30 16:01:11 +00:00
http://localhost:8080/unity/user_info?access_token=b03b99a1-f128-4d6e-b9d3-38a0ebcab5ef
2015-05-15 09:11:41 +00:00
Response JSON
{"archived":false,"email":"unity@wdcy.cc","guid":"55b713df1c6f423e842ad68668523c49","phone":"","privileges":["UNITY"],"username":"unity"}
[ROLE_MOBILE]
2022-04-30 16:01:11 +00:00
http://localhost:8080/m/user_info?access_token=20837fa5-a0a1-4c76-9083-1f0e47ca0208
2015-05-15 09:11:41 +00:00
Response JSON
{"archived":false,"email":"mobile@wdcy.cc","guid":"612025cb3f964a64a48bbdf77e53c2c1","phone":"","privileges":["MOBILE"],"username":"mobile"}