Hi,
Currently I am Integrating Azure API Management Service with Auth0. For connections I am using enterprise connections with Microsoft Azure AD. All works fine, but the issued JWT token from Auth0 doesn’t contain user profile information like name, emailId. Currently the only the below information are available in issued Auth0 token.
{
“iss”: “auth0domain”,
“sub”: “waad|AlphaNumericValue”,
“aud”: “apiId”,
“iat”: 1575265479,
“exp”: 1575351879,
“azp”: “AlphaNumericValue”,
“scope”: “readwrite:general”
}
To get the user information(name, emailId) in the JWT token, What kind of setting i have to enable here.
Thanks