看到 销售易的OpenAPI文档中说:
OAuth2.0 认证中的 Authorization Code 和 Resource
Owner Password 两种认证方式
搜:
OAuth 2.0 认证方式
参考:
“
五、客户端的授权模式
客户端必须得到用户的授权(authorization grant),才能获得令牌(access token)。OAuth 2.0定义了四种授权方式。
授权码模式(authorization code)
简化模式(implicit)
密码模式(resource owner password credentials)
客户端模式(client credentials)
“
对于OAuth2.0授权方式的理解 | Jyong’s Blog
【总结】
其实只是大概知道这几种方式就好。
主要还是看对应的服务方提供的api文档,按照文档去调用接口,即可获取token。
拿着token,就可以去获取所需要的数据了。
转载请注明:在路上 » 【整理】OAuth2.0 认证中的 Authorization Code 和 Resource Owner Password 两种认证方式