【发布时间】:2020-09-02 07:50:44
【问题描述】:
我正在尝试在一个基于 Java 的 Web 项目中实现 OAuth2.0 授权框架。 我使用 MS Azure 作为 Resource Owner(R.O) + Auth Server(A.S)。
我还创建了一些自定义范围(即属性)以包含在访问令牌中。
我的问题是 - when client receives access token from Azure AD and forwards it to the Resource Server, how does resource server(RS) validates this access token ? How can RS decode the token and read the "scope".
RS 从未连接到 R.O 或 A.S.
注意。我不想使用 OIDC。我只想通过 OAuth2 实现这一目标
【问题讨论】:
标签: validation oauth-2.0 token