Hi, I develop ionic application SSO connecting with Microsoft Azure AD.
I want to call Microsoft graph to access user detail, user photo (not from gravatar).
so I see response access token by testing get users in api management.
It look like:
"identities": [
{
"user_id": "...",
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSU...",
"expires_in": "3600",
"refresh_token": "AQABAAAAAAC5una0EUFgTIF8Ela...",
"provider": "waad",
"connection": "...-waad",
"isSocial": false
}
],
Can I use this access_token call Microsoft Graph? or another way?
Thank you.