How do you request the User.ReadBasic.All scope on a access token for the Azure Graph API? I'm trying by making a request to
passing over the following parameters
- client_id (from application in Azure)
- grant_type=password
- resource=https://graph.windows.net
- client_secret (from application in Azure)
- username (username for authorized account)
- password (password for authorized account)
- scope=user.readbasic.all
However, the token I get back shows the Scope as "User.Read" which only allows me to read the profile of the user who's username/password I provide in the request. I need to be able to read the basic profile of ANY user with this token.
When I log in with my account to the Graph Explorer, I can read any user profile I want. What are they sending that I am not?
What am I missing here????