Azure 存储身份验证失败 - 受众验证失败。观众不匹配。 [蔚蓝][OAuth]
Azure Storage Authentication failing - Audience validation failed. Audience did not match. [AZURE][OAuth]
我正在尝试使用以下代码对 Azure 存储进行 REST 调用。
但它显示以下错误:
<?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>
我已经分配了角色:
并设置 API 权限:
但是还是这个错误。有人可以帮忙吗?
您的访问令牌的受众不正确。 aud
(观众)应该看起来像 https://xxxx.blob.core.windows.net
.
确保请求访问令牌时 scope
是 https://{account-name}.blob.core.windows.net/user_impersonation
。
我正在尝试使用以下代码对 Azure 存储进行 REST 调用。
但它显示以下错误:
<?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>
我已经分配了角色:
并设置 API 权限:
但是还是这个错误。有人可以帮忙吗?
您的访问令牌的受众不正确。 aud
(观众)应该看起来像 https://xxxx.blob.core.windows.net
.
确保请求访问令牌时 scope
是 https://{account-name}.blob.core.windows.net/user_impersonation
。