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 Risposta
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
ESPERTO
con risposta 2 anni fa
profile picture
ESPERTO
verificato 8 mesi fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande