I have an Auth0 application with a few localhost URLs as allowed callback URLs. Example: https://127.0.0.1:8080/login, https://127.0.0.1:8080/results, https://127.0.0.1:8080/user
When I start the authentication flow using one of the previous allowed URLs, everything works as expected. Example: https://tenant.auth0.com/authorize?audience=my-api&response_type=token&client_id=client-id&redirect_uri=https://127.0.0.1:8080/results
I want to support a new allowed URL: https://mynicedomain.com
So I added it to the allowed list; however, it doesn't work when I go to: https://tenant.auth0.com/authorize?audience=my-api&response_type=token&client_id=client-id&redirect_uri=https://mynicedomain.com
I tried adding / in both, Auth0 conf and in the URL. Also, add it as allowed URL origins but I can't still make it work.
Did anyone have a similar issue? I read several posts and Auth0 docs and I cannot find what I am doing wrong.
redirect_uri=https://mynicedomain.com/auth? Otherwise, what "doesn't work" — what happens and when?