Auth0 Never Sends me an API Access Token for Audience

Hi @evan7

Welcome to the Auth0 Community!

Thank you for posting your question. Can you try to get the access token with this change:

const token = await getAccessTokenSilently({
  authorizationParams: {
    audience: 'https://api.admin.app.com',
    scope: 'read:accounts' 
  },
});

Thanks
Dawid

1 Like