Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
23,285 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.