Azure Web API的身份验证令牌

时间:2016-04-27 16:03:53

标签: azure authentication asp.net-web-api azure-active-directory

我在使用令牌访问Azure Web API时遇到问题。我跟着this documentation from Microsoft

我可以通过向授权令牌端点发出POST请求来成功请求访问令牌:

https://login.microsoftonline.com/{Tenant ID}/oauth2/token

我的帖子:

client_id:( Web API client ID )
client_secret:( Web API client Secret )
grant_type:password
username:userName
password:*******
resource:sharepoint.com

我使用POSTMAN来测试我的来电,当我尝试使用上面返回的令牌访问我的API时,我的401未经授权。

1 个答案:

答案 0 :(得分:0)

我的WebConfig文件中存在配置问题。