API Tokens - React Native SDK

Its alright folks. I solved it.

auth0.webAuth

  .authorize(
    {
      scope: 'openid profile email',
      audience:'copy paste audience URL from settings of API here'
    },
    {ephemeralSession: true}
    )

I had to add the audience.

1 Like