I’m having an issue trying to log out a user and redirecting to our website afterwards.
For example, i’m using this url for logging out:
https://MY_AUTH0_DOMAIN.auth0.com/v2/logout?returnTo=http://dev.MY_APP_DOMAIN.com/logout
I get a page where it says: Oops!, something went wrong.
When I use the route https://MY_AUTH0_DOMAIN.auth0.com/v2/logout without the returnTo query parameter, the logout works. (“OK” response)
I searched a lot on the subject and found out I had to configure Allowed Logout URLs, which i did in my auth0 application and also in the tenant section just to make sure.
The allowed logout url I used is this: http://*.MY_APP_DOMAIN.com
But same thing still happens, I cannot get the logout ressource to redirect the browser to my application.
Is there anything I’m missing for this to work?
Thanks!