I am unable to get access token from the microsoft active directory graph api.

ahmad nawaz 21 Reputation points
2021-07-06T10:25:30.887+00:00

Here is my postman screenshot.

112118-postman.png

In response, I am getting a sign-in form. I saved the response in HTML file and it opens like this.

112069-screenshot-from-2021-07-06-15-00-14.png

My requirements are simple.

I need to call https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize to get the code that is necessary for getting the token.

Then I want to call {tenant}/oauth2/v2.0/token to get the access token

Then I want to call /oidc/userinfo to get the users of AD.

Is anything I am doing wrong?

Azure Active Directory
Azure Active Directory
An Azure enterprise identity service that provides single sign-on and multi-factor authentication.
13,467 questions
Microsoft Graph Users API
Microsoft Graph Users API
A Microsoft API that allows you to build compelling app experiences based on users, their relationships with other users and groups, and the resources they access for example their mails, calendars, files, administrative roles, group memberships.
633 questions
No comments
{count} votes

Accepted answer
  1. Vasil Michev 66,011 Reputation points MVP
    2021-07-06T13:26:22.397+00:00

    Perhaps your expectations are wrong, using the authorize endpoint will require you to enter credentials as detailed in the documentation, before returning an auth code or token: https://learn.microsoft.com/en-us/graph/auth-v2-user#2-get-authorization
    As noted in the article, if using SSO you might be able to get the token directly, but that will not always work.
    If you want to complete the flow by providing credentials directly, use the ROPC flow: https://learn.microsoft.com/en-us/azure/active-directory/develop/v2-oauth-ropc
    Or client credentials: https://learn.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-client-creds-grant-flow#get-a-token


0 additional answers

Sort by: Most helpful