我尝试打电话GET https://graph.microsoft.com/v1.0/subscribedSkus
其文档位于https://learn.microsoft.com/en-us/graph/api/subscribedsku-list?view=graph-rest-1.0&tabs=http
并说:Organization.Read.All, Directory.Read.All, Organization.ReadWrite.All, Directory.ReadWrite.All
我在 Azure 门户上制作了一个具有特定权限的应用程序(以及其他 API 调用的更多权限):
- 授予权限后我等待了超过 5 分钟
- 我什至重新创建了证书(据我所知不需要)
- 我可以
GET https://graph.microsoft.com/v1.0/{userId}/licenseDetails
成功调用
但我无法打电话GET https://graph.microsoft.com/v1.0/subscribedSkus
我不断收到以下信息:
{
"error": {
"code": "Authorization_RequestDenied",
"message": "Insufficient privileges to complete the operation.",
"innerError": {
"date": "2023-08-17T08:55:23",
"request-id": "xxxxxx",
"client-request-id": "xxxxxxx"
}
}
}
这里出了什么问题?