While trying to login using OpenID Connect (at the /authorize
endpoint) I immediately get an access_denied
response from Auth0. When I go to logs in Auth0, I see this error:
{
"date": "2018-08-03T17:16:49.238Z",
"type": "f",
"description": "Service not found: *****",
"connection_id": "",
"client_id": "******",
"client_name": "Editor UI Test",
"ip": "*****",
"user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36",
"details": {
"body": {},
"qs": {
"audience": "******",
"state": "bgcbjwivth",
"redirect_uri": "https://******.com/api/sso/openid-backend",
"response_type": "code",
"client_id": "*****",
"scope": "openid email"
},
"error": {
"message": "Service not found: ****",
"oauthError": "access_denied",
"type": "oauth-authorization"
}
},
"hostname": "[tenant].auth0.com",
"log_id": "90020180803171649238129015640224429796132571207373422706"
}
I know that client ID is correct. I even created a new Auth0 application and updated my web app’s settings to reflect its new client ID, but got the same error. What’s going on?