React-native-auth0 fetch full user

I come from react-native-auth0@4 where I was able to do:

const credenntials = await getCredentials();
const auth0 = new Auth0({
  domain: DOMAIN,
  clientId: CLIENT_ID,
});
const user = await auth0.users(credenntials.accessToken).getUser({
  id: "xyz",
});

Now with version 5 the call to .users fails.
I read all migration guide.

Hi @diego.tonini93,

Could you provide me with the exception and the call stack to help me investigate it further?

Have a good one,
Vlad

Probably I solved. The cause was “useDPoP“. I set false in the request config.
But I suggest you to make more clear for a developer. Reading docs it easy to understand what is it, but the default value is true (and probably in v4 was false).
The problem is that DOCS say also that the feature is in early and “contact auth0 to enable it” :).

Easy fix but hard di discovery