【发布时间】:2017-06-18 20:33:33
【问题描述】:
我正在针对Microsoft Graph API 进行编码,并且我正在尝试证明生成 OAuth 令牌的能力。我正在使用 Postman 并将我的应用程序托管在 Azure Active Directory 上。我在尝试传递正确的 Scopes 时遇到了 Postman 的问题 - 我正在尝试传递 User.read 但是,Postman 没有生成令牌。
我的设置:
授权网址:https://login.windows.net/{my_tenent}/oauth2/authorize
访问网址:https://login.windows.net/{my_tenent}/oauth2/token
范围:User.readAll
这些是要传入以生成 OAuth 令牌的正确值吗?
【问题讨论】:
标签: c# azure oauth microsoft-graph-api