如何在 OAuth 2.0 中使用 access_token

How to use access_token in azure with OAuth 2.0

我正在练习一个名为 OAuth 2.0 Sample for Azure AD Spring Boot Starter Resource Server library for Java.I followed the steps but blocked in Check the authentication and authorization 的 azure 示例。我已经成功获得了 access_token,但我不知道如何在 postman 或任何其他方式中使用它。有任何文件或建议吗?非常感谢!

好的,我在请求 header 中添加了授权,但我得到了 401 和一个 error message. And this is way where I got the access_token。 有什么问题吗?

您可以执行如下操作:

您可以在顶部添加必要的 URL 和 HTTP 动词。

您必须在邮递员中添加授权 Headers 并添加 oauth 令牌 bearer 如下所示

Authorization :  Bearer <Oauth Token>

更新: