In my WebAPI project I'm using Owin.Security.OAuth
to add JWT authentication.
Inside GrantResourceOwnerCredentials
of my OAuthProvider I'm setting errors using below line:
context.SetError("invalid_grant", "Account locked.");
this is returned to client as:
{
"error": "invalid_grant",
"error_description": "Account locked."
}
after user gets authenticated and he tries to do "normal" request to one of my controllers he gets below response when model is invalid (using FluentValidation):
{
"message": "The request is invalid.",
"modelState": {
"client.Email": [
"Email is not valid."
],
"client.Password": [
"Password is required."
]
}
}
Both requests are returning 400 Bad Request
, but sometimes You must look for error_description
field and sometimes for message
I was able to create custom response message, but this only applies to results I'm returning.
My question is: is it possible to replace message
with error
in response that is returned by ModelValidatorProviders
and in other places?
I've read about ExceptionFilterAttribute
but I don't know if this is a good place to start. FluentValidation shouldn't be a problem, because all it does is adding errors to ModelState
.
EDIT:
Next thing I'm trying to fix is inconsistent naming convention in returned data across WebApi - when returning error from OAuthProvider
we have error_details
, but when returning BadRequest
with ModelState
(from ApiController
) we have modelState
. As You can see first uses snake_case
and second camelCase
.
We may use overloaded SetError to do it otherwise, replace error with message.
Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling.