【发布时间】:2022-01-20 23:07:35
【问题描述】:
阅读了关于 OAuth2 的各种资源,我理解了以下流程:
User/Resource-Owner opts for OAuth based authorization on client
Client redirects user to auth server
User provides credentials, approves access
Auth server redirects user to client with authorization code
Client sends (auth code + client creds) to auth server to get access token
And client finally uses access token to get access to the resource
这是否意味着现在客户端使用相同的身份验证代码来生成访问令牌以供将来所有访问使用,这意味着身份验证代码与客户端一起保存。
【问题讨论】:
标签: oauth-2.0