identities
array. Instead, they will be stored in a secure tokenset within the Token Vault. To enable Token Vault, read Configure Token Vault.Auth0 Management API
.read:users
, read:user_idp_tokens
. Required scopes are listed for each endpoint in the Management API Explorer.access_token
property from the response. This is what you will use to access the Management API.POST
operation to the /oauth/token endpoint of the Auth0 Authentication API, using the OAuth 2.0 Client Credentials grant. This is the grant that machine-to-machine processes use to access an API. To learn more about the flow, read Client Credentials Flow.
{userId}
: ID of the user for whom you want to call the IdP’s API.{yourAccessToken}
: Access Token you extracted in the previous section.sub
claim in the ID Token, or call the /userinfo endpoint of the Authentication API and extract it from the user_id
response property.
identities
array: user.identities[0].access_token
.
google-oauth2
.
/oauth/token
during the first step of the backend process.
Instead, you must build a proxy for your backend and expose it to your application as an API.