- My goal: Set up an Oauth flow with our Auth0 web application
- Issue: redirect_uri: ""
- Steps I've taken to troubleshoot: Atempted to manually supply the redirect_uri query parameter in the authorization url.
- Additional info: (Cloud or Self-hosted, Screenshots)
Self-hosted
I have tried with and without the redirect_uri query param. The result is the same
Resulting error in login to Auth0
{
"body": {},
"qs": {
"state": "<redacted>",
"response_type": "code",
"access_type": "offline",
"redirect_uri": "",
"prompt": "login",
"client_id": "<redacted>",
"scope": "openid profile email",
"audience": "https://monaco.co/auth0-identifier/antalya"
},
"error": {
"message": "The redirect_uri parameter is not valid: \"\" If url looks fine, check that you are not including non printable chars",
"oauthError": "invalid_request",
"type": "request-error"
},
"session_id": "<redacted>"
}