I am attempting to authenticate a user using a MVC application and a Okta Universal Login page and am experiencing an issue with the callback. I can successfully login however after authentication, the callback does not call the home page in the application.
In the web config, I have . The value is set the same as the universal login page listed in the Branding, Universal login advanced settings url.
Regarding the allowed callback urls: I have the following:
https://localhost:44300/, https://mydomain.us.auth0.com/login.
(Without having https://mydomain.us.auth0.com/login in the allowed callback urls, the application returns an issue “Callback URL mismatch”, so it appears it’s necessary for this url to be in the callback urls.)
After successfully authenticating, the application will try to redirect to https://mydomain.us.auth0.com/login, and indicates it cannot find the page. However, I would like it to redirect to the home page after authenticating. How can my settings be changed to accomplish this?
My sincere thanks for any insights/suggestions.