Is it possible to pass headers in Nodejs Lambda API

0

Hi,

I have created a Nodejs Lambda, which require header parameters. Lambda deployed by the 'serverless.yml' file and corresponding API Gateway created for all APIs with lambda proxy integration. When I execute those APIs with headers parameters it throws CORS error like this,

Request header field 'abc' is not allowed by Access-Control-Allow-Headers in preflight response

I have given 'Allow Headers' in entry component.

app.use(function (req, res, next) { res.header("Access-Control-Allow-Origin", "*"); res.header("Access-Control-Allow-Methods", "GET,HEAD,OPTIONS,POST,PUT,DELETE"); res.header("Access-Control-Allow-Headers", "Content-Type"); next(); });

Is there any solution to pass headers ?

1 Antwort
1

Please take a look at this troubleshooting guide to see if any of these reasons are responsible - https://aws.amazon.com/premiumsupport/knowledge-center/api-gateway-cors-errors/

Have you configured CORS on your API Gateway API?

profile pictureAWS
EXPERTE
beantwortet vor 2 Jahren
profile picture
EXPERTE
überprüft vor 8 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen