We are using Auth0 with a Asp.Net web application. I notice that in our UseOpenIdConnectAuthentication()
we are setting OpenIdConnectAuthenticationOptions.RedirectUri
to https://ourapplication.com/signin-auth0
.
That route doesn’t exist in our system. What exactly is the RedirectUri
? Is that the URL the user gets redirected to after authentication? If this is the case, I should change it to a valid (authenticated) URL within our application. We have likely never experience an issue with this being an issue because all of our login flows set the AuthenticationProperties.RedirectUri
property.
Is my assumption correct?