I'm having an issue getting an access token through Postman.
I'm following this process "Flow 2". http://codematters.tech/getting-access-token-for-microsoft-graph-using-oauth-rest-api/
"Flow 1" worked for me.
This is the given scenario. I am sending a post request with body.
POST https://login.microsoftonline.com/e0xxxxxx-xxxx-xxxx-xxxx-xxxx09d53164/oauth2/v2.0/token
{
client_id:id
client_secret:secret
grant_type:password
username:user
password:pass
scope:openid
}
Response -> "AADSTS90002: Tenant ' ' not found. This may happen if there are no active subscriptions for the tenant.
Why would the Tenant be blank given it was populated?
Thank you for your help.