-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to add custom header for error responses from validation #6658
Comments
Hi @sm-agci, |
I would like to modify response generated by Tyk, 400 in my case comes from request validation made by Tyk based on swagger definition (OAS swagger imported as json file). |
We've analysed that issue and problem is probably in handler_error.go - And now, @andyo-tyk is there any particular reason why Or another proposition - would it be acceptable to introduce new configuration field (up to discussion how it should look) which would be used to preserve custom headers in case of error? Or maybe I'm missing something and somewhere through the pipeline you would expect that headers in fact should be preserved but it's not happening and this should be addressed somewhere else? |
Hi @qwark97, The Response Header Transform middleware is not intended for use with 4xx errors from the Gateway itself - though as you've identified, we might be able to extend the functionality to enhance the customisation of error responses. I'm happy to add this idea to the "potential features" list. @sm-agci - as explained here, Tyk is working as designed - we don't currently have the facility to add custom headers to 4xx responses (but your interest is noted). |
Branch/Environment/Version
Describe the bug
We have API configuration imported to Tyk.io using OAS. In this configuration we have middleware section enabled where we specify which plugins are used for given API.
We have two plugins - when requests comes in it will assign Unique-Id header with some UUID.
When request does not match API swagger definition it will return 400 error. We also have second plugin which should add header when this 400 error is returned.
In logs we see that plugins are fired and they add headers but response which is returned to user does not have our custom headers.
We tried to run plugin only on preRlugins or on responsePlugins or on both - it does not matter, custom headers are overriden by defaults:
HTTP/1.1 400 Bad Request
Content-Type: application/json
X-Generator: tyk.io
Date: Tue, 22 Oct 2024 12:23:01 GMT
Content-Length: 336
{
"status": 400,
"code": "INVALID_ARGUMENT"
}
Reproduction steps
Steps to reproduce the behavior:
API configuration:
ResponseCustomHeaderMiddleware: (grpc , java)
Actual behavior
Custom header when 40x error happen is not returned.
Expected behavior
Response which is returned based on swagger file validation should have headers which were added to returnoverrides or there should be an additional hook where this response can be modified before returning it to the user.
The text was updated successfully, but these errors were encountered: