From 81c698c39575abd3dcf4240a643d4fcf6fda06fa Mon Sep 17 00:00:00 2001 From: lishengzhao Date: Tue, 17 Mar 2015 16:01:45 +0800 Subject: [PATCH] Add more test details steps in oauth_text.txt --- others/oauth_test.txt | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/others/oauth_test.txt b/others/oauth_test.txt index 6ed26a3..3106eb9 100644 --- a/others/oauth_test.txt +++ b/others/oauth_test.txt @@ -1,20 +1,27 @@ -方式1:基于浏览器 (访问时后跳到登录页面,登录成功后跳转到redirect_uri指定的地址) +方式1:基于浏览器 (访问时后跳到登录页面,登录成功后跳转到redirect_uri指定的地址) [GET] http://localhost:8080/oauth/authorize?client_id=unity-client&redirect_uri=http%3a%2f%2flocalhost%3a8080%2funity%2fdashboard.htm&response_type=code&scope=read -方式2:基于客户端 (注意参数中的username,password,对应用户的账号,密码) +响应的URL如: +http://localhost:8080/unity/dashboard.htm?code=zLl170 + +通过code换取access_token [GET] +http://localhost:8080/oauth/token?client_id=unity-client&client_secret=unity&grant_type=authorization_code&code=zLl170&redirect_uri=http%3a%2f%2flocalhost%3a8080%2funity%2fdashboard.htm + + +方式2:基于客户端 (注意参数中的username,password,对应用户的账号,密码) [GET] http://localhost:8080/oauth/token?client_id=unity-client&client_secret=unity&grant_type=password&scope=read,write&username=admin&password=admin -返回的数据 +获取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后访问资源 +获取access_token后访问资源 [GET] http://localhost:8080/unity/dashboard.htm?access_token=3420d0e0-ed77-45e1-8370-2b55af0a62e8 -刷新access_token +刷新access_token [GET] http://localhost:8080/oauth/token?client_id=mobile-client&client_secret=mobile&grant_type=refresh_token&refresh_token=b36f4978-a172-4aa8-af89-60f58abe3ba1