Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enable CORS when using AWS API Gateway Request Validator

I setup AWS API Gateway with CORS successfully, when a request is valid I have a 200 status code and also CORS headers, that's nice.

But when AWS API Gateway Request Validator detects an invalid input, I have the status code is 400 but CORS headers are not sent...

That's really unfortunate, because the client sees a CORS errors instead of a real 400 error (for exemple with fetch the client is not able to distinguish 400 errors because of CORS errors).

This question may be related to Get detailed error messages from AWS API Gateway Request Validator

like image 725
Yves M. Avatar asked Feb 09 '18 16:02

Yves M.


1 Answers

I came to this answer through a discussion about using serverless to deploy CORS services and dealing with errors thrown from API Gateway: https://github.com/serverless/serverless/issues/3896#issuecomment-333910525

Basically, you need to go to API Gateway, select your API, then select Gateway Responses. You can then add headers for any 4XX or 5XX response.

API Gateway, Gateway Responses

This will allow 400 errors thrown from API Gateway to work with CORS, since you're adding the needed headers here.

like image 103
Eric C Avatar answered Sep 27 '22 16:09

Eric C