Hi all,
I am setting up an OpenID Connect Resource Owner Password flow using the /token
endpoint.
At first, I did not configure the password
grant type, but once I did that, I now get the following error with HTTP 500 status code from Auth0 (owned by Okta now ):
{
"error": "server_error",
"error_description": "Authorization server not configured with default connection."
}
Here is my request:
curl -v -X POST \
-H "Content-type:application/x-www-form-urlencoded" \
-d "client_id=<client-id>&client_secret=<client-secret>&grant_type=password&username=<username>&password=<password>" https://mytenant.us.auth0.com/oauth/token
I searched throughout the configuration menu but did not find anything which sounds like this. I also tried to use the provided Default Authorization Server to no avail.
Does anyone have a clue?
Thanks!