我使用本地管理员令牌调用Azure AD Graph API。无论我调用哪个端点,我都会收到以下错误消息。
如何访问Azure AD Graph API?
{
"odata.error": {
"code": "Authorization_RequestDenied",
"message": {
"lang": "en",
"value": "Insufficient privileges to complete the operation."
}
}
}
我的网址
https://graph.windows.net/>tenant>/users/821d91b8-36e1-4b89-bd3a-4caecc40e4c9/memberOf?api-version=1.6
答案 0 :(得分:1)
Azure Graph API需要在用户登录的应用程序注册旁边进行特殊的应用程序注册。
请遵循以下指南:
https://azure.microsoft.com/documentation/articles/active-directory-b2c-devquickstarts-graph-dotnet/