POST
LambdaProxyメソッドとCORSヘッダー用のOPTIONS
メソッドを使用してAPIGatewayリソースを設定しました。
OPTIONS
メソッドは、次のヘッダーを返します。
$ curl -i -X OPTIONS https://xxxxxxxxx.execute-api.eu-central-1.amazonaws.com/dev/endpoint1
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 0
Connection: keep-alive
Date: Sat, 18 Feb 2017 17:07:17 GMT
x-amzn-RequestId: xxxx
Access-Control-Allow-Origin: *
Access-Control-Allow-Headers: Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token
Access-Control-Allow-Methods: POST,OPTIONS
X-Cache: Miss from cloudfront
Via: 1.1 xxxx.cloudfront.net (CloudFront)
X-Amz-Cf-Id: xxxx==
しかし、生成されたJavascriptSDKを使用してPOST
エンドポイントを呼び出すと、Chromeブラウザーコンソールに次のエラーが表示されます:
XMLHttpRequest cannot load https://xxxx.execute-api.eu-central-1.amazonaws.com/dev/endpoint1.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost:8080' is therefore not allowed access.
firefoxと同様に:
Cross-Origin Request Blocked:
The Same Origin Policy disallows reading the remote resource at https://xxxx.execute-api.eu-central-1.amazonaws.com/dev/endpoint1.
(Reason: CORS header ‘Access-Control-Allow-Origin’ missing).
CORSヘッダーが考慮されないのはなぜですか? POSTメソッド設定の追加の変更が必要ですか?
ラムダ関数でヘッダーを手動で追加する必要があるようです。
NodeJSの場合、スクリプトは次のようになります。
context.succeed({
"statusCode": 200,
"headers": {
"X-Requested-With": '*',
"Access-Control-Allow-Headers": 'Content-Type,X-Amz-Date,Authorization,X-Api-Key,x-requested-with',
"Access-Control-Allow-Origin": '*',
"Access-Control-Allow-Methods": 'POST,GET,OPTIONS'
},
"body": JSON.stringify(response)
})
より良いアプローチは、API Gatewayを使用して、ラムダからのペイロードをCORS関連のヘッダーで強化することです。 https://kennbrodhagen.net/2015/12/02/how-to-access-http -headers-using-aws-api-gateway-and-lambda /
これは、はるかにスケーラブルでエラーが発生しにくいアプローチです。
以下の点をご確認ください。
ありがとう、ダニエル