Microsoft Azure 云服务管理 API 失败并显示 401:未经授权的错误?

Microsoft Azure Cloud service management API fails with 401: Unauthorized error?

我们正在将 Role Assignments - List API 来自 Microsoft Azure Cloud Management APIs,Link 集成到文档中:https://docs.microsoft.com/en-us/rest/api/authorization/roleassignments/list#errordetail

我们已经完成了提到的所有配置:

到目前为止 OAuth 成功,但是当用于调用 API GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/roleAssignments?api-version=2015-07-01 时收到的访问令牌失败并显示 401 未授权错误。在进行实际调用时,我已将 subscriptionId 替换为适当的值。

我查看了使用 https://jwt.io/ 访问令牌的详细信息,scp 元素似乎只有 "scp": "User.Read" 范围,缺少 user_impersonation。尽管 Microsoft 登录服务的 AUTH 对话框清楚地显示了请求的 user_impersonation 授权。我用于 OAuth 的用户帐户可以访问给定的 azure 订阅。

可能是什么问题?

在请求访问令牌时添加 scopehttps://management.azure.com/user_impersonation 很重要。

在浏览器中使用 implicit grant flow 进行测试:

https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/authorize?
client_id=<your-app-id>
&response_type=token
&redirect_uri=<your-redirect_uri>
&scope=https://management.azure.com/user_impersonation
&response_mode=fragment
&state=12345
&nonce=678910

注意:如果使用client credentials flow,请将scope更改为https://management.azure.com/.default