I understand that .net provides default value for the callback url which is /signin-oidc.
I also understand we could override that value upon adding the authentication service to the DI, say I give it the value of /my-webapp-home-page.
What I don't know is, what would happen in case I override that value:
- should I create an endpoint for it? and if I do, what is expected from it?
- or, .net would still handle things the same way it would have done for the default value /signin-oidc
- and what if i'm not in a .net environment, should I create en endpoint for that callback and do some logic? or is it just some kind of text value that would serve to check whether i'm talking to the right client and not someone who tries to steal information (from an authorization server perspective)
If someone could clarify this point, that would be awesome, thank you