我正在尝试执行'客户端凭据'流程并获取Office 365应用程序的访问令牌。我按照以下步骤操作。
第1步:我按照以下文档在azure AD上注册了应用程序 http://blogs.msdn.com/b/exchangedev/archive/2015/01/21/building-demon-or-service-apps-with-office-365-mail-calendar-and-contacts-apis-oauth2-client-credential-flow.aspx?CommentPosted=true#commentmessage
第2步:为我的应用程序配置X.509公共证书。下载清单文件并更新“KeyCredentials”值并再次上载清单(按照步骤1文档)。
"keyCredentials": [
{
"customKeyIdentifier": "BB/OLYBBivt4RXUKxQbk+c9UEmo=",
"endDate": "2016-12-15T07:00:00Z",
"keyId": "6837d367-660c-4d44-b0ea-9dcd538828e5",
"startDate": "2014-12-15T07:00:00Z",
"type": "AsymmetricX509Cert",
"usage": "Verify",
"value": null
}
第3步: 按照步骤进行操作 Office 365 Rest API - Daemon week authentication生成“客户端断言”,如下所示。
base64(header).base64(payload).base64(siganature)
标题如下:
{
"alg": "RS256",
"x5t": "BB/OLYBBivt4RXUKxQbk+c9UEmo=" //same as customKeyIdentifier
}
Payload as:
{
"aud": "https://login.windows.net/<tenantid>/oauth2/token",
"exp": "now + 1 hour",
"nbf": "now",
"iss": "CLIENT ID",
"jti": "SOME GUID",
"sub": "CLIENT ID"
}
对于签名(RSA-SHA-256算法),我使用openssl,如下所示。
openssl dgst -sha256 -sign privatekey.pem < input.txt > signature
注意:input.txt包含base64(header).base64(payload)
步骤4: 当我提出获取访问令牌的请求时,我收到了“无效签名”错误,如下所示
{
"error": "invalid_client",
"error_description": "AADSTS70002: Error validating credentials. AADSTS50012: Client assertion contains an invalid signature.\r\nTrace ID: 880b11db-0935-4cbd-836e-4d4d91b2a9e2\r\nCorrelation ID: e72ae39a-9868-4efe-847e-890ef32d48ae\r\nTimestamp: 2015-03-12 18:45:54Z",
"error_codes": [
70002,
50012
],
"timestamp": "2015-03-12 18:45:54Z",
"trace_id": "880b11db-0935-4cbd-836e-4d4d91b2a9e2",
"correlation_id": "e72ae39a-9868-4efe-847e-890ef32d48ae",
"submit_url": null,
"context": null
}
在RSA SHA256签名中我做错了什么?
非常感谢任何帮助。
注意:我甚至在python中使用'PyJWT',在nodejs中使用'jsonwebtoken'来生成客户端断言(JWT令牌)并使用令牌请求,我得到了同样的错误。
答案 0 :(得分:3)
下载清单时,它始终会为value
密钥发送空值。这并不表示存在问题。确保您正在执行RSA SHA-256签名。见Could not retrieve app only tokens for office 365