I am using Postman to query the graph API for the list of applications on my instance of AAD.
Access Token URL: https://login.microsoftonline.com/common/oauth2/token
With these, I'm able to get the access token. Now when I attempt to query the graph API for the list of Applications, along with the access token included in the header, I get the following error:
{ "error": { "code": "InvalidAuthenticationToken", "message": "Access token validation failure.", "innerError": { "request-id": "***-***-***", "date": "2017-07-25T16:21:06" } } }
Is there a way to resolve this?
Edit: I also found something weird that when I receive the Access token, I do not receive the refresh token along with it :|
Thanks!