Hi @diede ,
Welcome to the Community!
To follow the resource owner flow without a web interface, you can follow the guide here:
https://auth0.com/docs/flows/call-your-api-using-resource-owner-password-flow
Here is an example request:
You will also want to make sure that your tenant has a default directory set to the connection name (Tenant settings > General → API Authorization Settings ->Default Directory)
Related topic:
Thanks @Carlos_Mostek ,
So finally got the /token endpoint working. I indicate below the exact config in case anyone else has the same issue in the future:
URL endpoint: https://{AUTH0_DOMAIN}/oauth/token
Post body:
{
"client_id": "***",
"grant_type": "password",
"username": "email@provider.com",
"password": "***"
}
Client Application settings:
The Client application who’s client ID you are using must be of type native and password must be checked within the Applications -> …
1 Like