0

我正在尝试使用以下 GET 访问 Office365 Azure 租户上用户的 OpenId UserInfo 端点:

GET https://login.windows.net/common/openid/userinfo HTTP/1.1
Authorization: Bearer eyJ0eXAiOiJ(...remainder deleted for brevity...)
Host: login.windows.net

响应失败并显示“400 Bad Request”,以及更具体的错误“AADSTS50063:凭证解析失败。AADSTS90010:JWT 令牌不能与 UserInfo 端点一起使用”

HTTP/1.1 400 Bad Request
Cache-Control: no-cache, no-store
Pragma: no-cache
Content-Type: text/html
Expires: -1
Server: Microsoft-IIS/8.5
x-ms-request-id: ef5c8a50-69b5-40f1-ac5f-9c0fc5180aa2
x-ms-gateway-service-instanceid: ESTSFE_IN_6
X-Content-Type-Options: nosniff
Strict-Transport-Security: max-age=31536000; includeSubDomains
P3P: CP="DSP CUR OTPi IND OTRi ONL FIN"
WWW-Authenticate: Bearer correlation_id="e5c613a0-0a21-40e1-9ef6-    eacf77580608", error="invalid_request", error_codes="[50063, 90010]",     error_description="AADSTS50063: Credential parsing failed. AADSTS90010: JWT tokens cannot be used with the UserInfo endpoint.%0d%0aTrace ID: ef5c8a50-69b5-40f1-ac5f-9c0fc5180aa2%0d%0aCorrelation ID: e5c613a0-0a21-40e1-9ef6-eacf77580608%0d%0aTimestamp: 2015-02-20 14:13:42Z", timestamp="2015-02-20 14:13:42Z", trace_id="ef5c8a50-69b5-40f1-ac5f-9c0fc5180aa2"
Set-Cookie: x-ms-gateway-slice=productionb; path=/; secure; HttpOnly
Set-Cookie: stsservicecookie=ests; path=/; secure; HttpOnly
X-Powered-By: ASP.NET
Date: Fri, 20 Feb 2015 14:13:40 GMT
Content-Length: 0

使用的不记名令牌是未过期的访问令牌,可正常用于其他操作,例如检索 Exchange 电子邮件。

此外,当我在“ https://www.googleapis.com/plus/v1/people/me/openIdConnect ”(作为 gmail 访问方案的一部分)处对 openid userinfo 端点使用相同的 GET 时,它工作正常

我在这里做错什么了吗?谢谢你的帮助!

一些额外的信息:

- 已经尝试使用 id_token 而不是 access_token,但这没有区别。

- 使用的 Oauth 范围是“个人资料电子邮件”

-请求的资源是“ https://outlook.office365.com/

-客户端应用程序是本机应用程序,并已启用“Windows Azure AD”和“Office 365 Exchange Online”的所有委派权限

4

1 回答 1

8

Azure AD 用户信息终结点目前不支持使用常规 JWT 访问令牌。相反,您可以通过在对令牌端点的请求中不指定任何资源来获取用户信息特定的访问令牌。您可以将用户信息端点本身视为一种资源,它需要特殊的令牌格式。

例如,在授权码情况下:

  • GET 请求https://login.windows.net/common/oauth2/authorize?...不带resource参数,并获取授权码
  • https://login.windows.net/common/oauth2/token使用授权码的POST 请求,同样不带resource参数。接收用户信息端点的访问令牌。
  • GET 请求https://login.windows.net/common/openid/userinfo在标头中传递访问令牌作为Authorization: Bearer AAAB(...rest of token...)
于 2015-02-23T17:30:22.470 回答