How can you customize the error messages provided by the Openiddict client. The errors in the sample app are text only, and break the user experience.
Steps to replicate:
- Clone the openiddict-samples repository
git clone https://github.com/openiddict/openiddict-samples.git
- Start the Velusia.Client project (I use Visual Studio)
- Browse to https://localhost:44338/callback/login/local
This displays a text only response:
error:missing_token
error_description:The security token is missing.
error_uri:https://documentation.openiddict.com/errors/ID2000
How do you customize this response to show "proper" MVC view with an error message (similar to https://localhost:44338/error)?
I understand this is the correct response - I just want to customize how it is displayed to the user.
I'm exploring solutions for this issue. I've devised a potential approach involving registering an event handler for the client within the Startup.cs, but I'm not entirely certain if it's the correct method. Any insights or suggestions would be appreciated.