我有一个标记为“公共(经过身份验证)”的 Azure API 应用程序,并在相关网关中设置了 Azure Active Directory 标识,如保护 API 应用程序中所述。
然后,我在同一个 Azure Active Directory 租户中创建了一个本机应用程序,并在委派权限中添加了访问网关的权限。
使用 ADAL 和以下代码,我能够成功地进行身份验证并获得访问令牌,但我不知道如何使用它来访问我的 API 应用程序。
string Tenant = "[xxx].onmicrosoft.com";
string Authority = "https://login.microsoftonline.com/" + Tenant;
string GatewayLoginUrl = "https://[gateway].azurewebsites.net/login/aad";
string ClientId = "[native client id]";
Uri RedirectUri = new Uri("[native client redirect url]");
async Task<string> GetTokenAsync()
{
AuthenticationContext context = new AuthenticationContext(Authority);
PlatformParameters platformParams = new PlatformParameters(PromptBehavior.Auto, null);
AuthenticationResult result = await context.AcquireTokenAsync(GatewayLoginUrl, ClientId, RedirectUri, platformParams);
return result.AccessToken;
}
我已经手动输入了x-zumo-auth header
我在 Chrome 中获得的 API 应用程序测试了它,然后它就可以工作,但不是我使用 ADAL 获得的令牌。我还尝试了他们的示例代码中描述的浏览器表单,这些表单有效但没有给我刷新令牌。
我需要如何设置我的身份验证代码,以便我可以TokenCache
在我的 API 应用程序中使用 a 和 ADAL?