OAuth2.0 四种授权模式

一、OAuth2.0 的四种授权模式:
1. 授权码(认证码)模式 (Authorization code) response_type=code

2. 简化(隐形)模式 (Impilict) response_type=token

3. 用户名密码模式 (Resource Owner Password Credential) grant_type=password

4. 客户端模式 (Client Credential) grant_type=client_credential

OAuth2.0的核心既是取得access_token,四种授权模式殊途同归,最终都是要取得access_token,只是路径不同,参数不同,具体可以参考RFC.

[RFC]https://tools.ietf.org/html/rfc6749
[.NET]https://github.com/cplate/oauth2

原文:https://www.2cto.com/kf/201602/489372.html
客户端模式使用参考:https://www.jianshu.com/p/91eaca49b451

你可能感兴趣的:(OAuth2.0 四种授权模式)