parent
b3818cfb05
commit
87a2cb68f7
|
@ -133,7 +133,12 @@
|
|||
</li>
|
||||
<li>
|
||||
<p>
|
||||
<a href="http://www.ruanyifeng.com/blog/2014/05/oauth_2_0.html">理解OAuth 2.0</a>, 介绍Oauth2很不错的文章
|
||||
<a href="http://www.ruanyifeng.com/blog/2014/05/oauth_2_0.html">理解OAuth 2.0</a>, 介绍Oauth2各类grant_type的使用
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
<a href="http://www.dannysite.com/blog/178/">OAuth2:隐式授权(Implicit Grant)类型的开放授权</a>, 介绍grant_type='implicit'模式
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
@ -33,7 +33,7 @@ grant_type(授权方式)
|
|||
1.authorization_code 授权码模式(即先登录获取code,再获取token)
|
||||
2.password 密码模式(将用户名,密码传过去,直接获取token)
|
||||
3.refresh_token 刷新token
|
||||
4.implicit 简化模式(获取URL Hash传递token)
|
||||
4.implicit 简化模式(在redirect_uri 的Hash传递token; Auth客户端运行在浏览器中,如JS,Flash)
|
||||
5.client_credentials 客户端模式(无用户,用户向客户端注册,然后客户端以自己的名义向'服务端'获取资源)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue