使用Postman在Chrome和#example {
position: fixed;
top: 0;
left: 0;
text-align: left;
background-color: #345c6d;
border-radius: 5px;
}
#example li {
font-size: 50px;
}
#example li:after {
content:">";
display: block;
}
标题中进行身份验证时,我的API应用程序使用控制器中的以下代码成功识别用户的upn:
x-zumo-auth
但是,当使用Microsoft的AzureCards控制台客户端示例中的代码(将浏览器添加到窗体窗口并捕获zumo令牌)时,我无法获取用户的aad令牌并从中获取以下错误API应用:
Runtime runtime = Runtime.FromAppSettings(Request);
EmaUserInfo user = runtime.CurrentUser;
TokenResult token = await user.GetRawTokenAsync("aad");
string upn = token.Claims[ClaimTypes.Upn];
有趣的是,当我设置断点并将zumo令牌从我的测试程序复制到邮递员时,甚至会发生这种情况。程序失败,邮递员成功返回。据我所知,他们发送完全相同的请求。我能错过什么?
编辑:我做了一些测试,发现Postman方法在隐身模式下完成时会产生相同的错误。这让我相信不仅需要设置Request to https://[gateway].azurewebsites.net/api/tokens?tokenName=aad&api-version=2015-01-14 GET failed BadRequest 400 (Bad Request)
{
"status": 400,
"source": "https://[gateway].azurewebsites.net/api/tokens?tokenName=aad&api-version=2015-01-14",
"message": "Microservice '[API App]' only has permissions for token ''. Can't get token 'aad'"
}
标头,而且还需要设置一些cookie以便用户正常工作。如果我生成令牌,从apiapp url中删除cookie并仅使用令牌POST请求,我也会收到错误。
答案 0 :(得分:6)
API App应该具有:authentication“数组,其类似于:
"authentication": [{"type": "aad"}]
你的最终apiapp.json应该是这样的:
{
"$schema": "http://json-schema.org/schemas/2014-11-01/apiapp.json#",
"id": "YourApiApps",
"namespace": "microsoft.com",
"gateway": "2015-01-14",
"version": "1.0.0",
"title": "YourApiApps",
"summary": "",
"author": "",
"endpoints": {
"apiDefinition": "/swagger/docs/v1",
"status": null
},
"authentication": [{"type": "aad"}]}
然后,请重新部署并再次检查。它应该解决这个问题。