Middy
Middy

Reputation: 109

Azure AD B2C - Using Azure AD Graph API

I am calling the Azure AD Graph API using a local administrator token. I keep getting the following error messages, no matter what endpoint I call.

How do I get access to the Azure AD Graph API?

{
  "odata.error": {
    "code": "Authorization_RequestDenied",
    "message": {
      "lang": "en",
      "value": "Insufficient privileges to complete the operation."
    }
  }
}

My URL

 https://graph.windows.net/>tenant>/users/821d91b8-36e1-4b89-bd3a-4caecc40e4c9/memberOf?api-version=1.6

Upvotes: 2

Views: 1919

Answers (1)

Middy
Middy

Reputation: 109

The Azure Graph API needs a special application registration alongside the application registration that users log in with.

Follow the guide below:

https://azure.microsoft.com/documentation/articles/active-directory-b2c-devquickstarts-graph-dotnet/

Upvotes: 1

Related Questions