Azure Active Directory
An Azure enterprise identity service that provides single sign-on and multi-factor authentication.
13,673 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I need to use Angular App to get:
Can I use the same Access Token with a Single App Reg?
@PaulAzure-8925, You cannot use the same access token which is issued to your webapi to call another webapi like Graph API. The reason being, an access token is always issued for a specific resource.
There are two distinct fields in an access token i.e:
So there has to be separate calls inorder to get your scenario working.
Hope this helps.