I’ve created an application in Auth0. It’s been granted the read:users permission only. I’m using the application’s client id/client secret in a client_credentials exchange to call /oauth/token to get a token (requesting scopes openid profile email) and intend on calling /api/v2/users/xxx with that token to get user information.
However, when I go to request the token it is failing with Client has not been granted scopes: openid, profile, email. These scopes are not listed for the Auth0 Management API, at least in the web interface. I also don’t see anything in the API documentation about those scopes as well.
Is there something fundamentally wrong with what I’m doing? Or do one of the read: permissions grant me what I need.