Azure 存储身份验证失败 - 受众验证失败。观众不匹配。 [天蓝色][OAuth]

时间:2021-05-06 12:29:00

标签: azure azure-active-directory azure-storage azure-storage-blobs azure-authentication

我正在尝试使用以下代码对 Azure 存储进行 REST 调用。 enter image description here

但它显示以下错误:

<?xml version="1.0" encoding="UTF-8"?>
<Error>
   <Code>AuthenticationFailed</Code>
   <Message>Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.\n' +
        'RequestId:11c07be7-301e-0003-556f-42091d000000\n' +
        'Time:2021-05-06T11:59:40.1049759Z</Message>
   <AuthenticationErrorDetail>Audience validation failed. Audience did not match.</AuthenticationErrorDetail>
</Error>

我已经分配了角色: enter image description here

并设置 API 权限: enter image description here

但是还是这个错误。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

您的访问令牌的受众不正确。 aud(观众)应该看起来像 https://xxxx.blob.core.windows.net

在请求访问令牌时确保 scopehttps://{account-name}.blob.core.windows.net/user_impersonation

enter image description here