如何通过 AAD 验证 Azure 服务管理请求

How to authenticate Azure Service Management Requests via AAD

我试了 3 种方法都没有结果:

  1. 根据这篇文章https://msdn.microsoft.com/en-us/library/azure/ee460782.aspx我已经在 AAD 中注册了新的 Web 应用程序,并有权访问 Azure 服务管理API(步骤 1-9)并将推荐的两行代码写入获取令牌:
    var context = new AuthenticationContext($"https://login.windows.net/{tenantId}");
    var result = context.AcquireToken("https://management.core.windows.net/", clientId, new Uri(redirectUri));

,但它失败了,异常是:

Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException was unhandled
Message: An unhandled exception of type 'Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException' occurred in Microsoft.IdentityModel.Clients.ActiveDirectory.dll
Additional information: AADSTS90014: The request body must contain the following parameter: 'client_secret or client_assertion'.
Trace ID: aa2d6962-5aea-4f8e-bed4-9e83c7631887
Correlation ID: f7f1a61e-1720-4243-96fa-cff182150931
  1. 我也试过了:
    var context = new AuthenticationContext($"https://login.windows.net/{tenantId}");
    var result = context.AcquireToken("https://management.core.windows.net/", new ClientCredential(clientId, clientSecret));

其中 clientSecret 是我的应用程序的秘密应用程序密钥。 此版本 returns 一个令牌,但使用此令牌的请求 returns 403 Forbidden:The 服务器无法验证请求。验证证书是否有效并与此订阅相关联

  1. 最后,我找到了 http://blogs.msdn.com/b/cloud_solution_architect/archive/2015/03/02/authenticating-azure-service-management-api-with-azure-ad-user-credentials.aspx,它推荐:
    var context = new AuthenticationContext(string.Format("https://login.windows.net/{0}", tenantId));

    // TODO: Replace with your Azure AD user credentials (i.e. admin@contoso.onmicrosoft.com)
    string user = "{YOUR-USERID]";
    string pwd = "{YOUR-USER-PASSWORD}";
    var userCred = new UserCredential(user, pwd);

    AuthenticationResult result =
    await context.AcquireTokenAsync("https://management.core.windows.net/", clientId, userCred);

但它也失败了,出现与第一种情况相同的异常...

你能帮帮我吗?

您应该在 Azure 门户中创建应用程序时将 "Application Type" 更改为 "NATIVE CLIENT APPLICATION"。