Lambda+APIGateway設定で「CORS の有効化」をオンにしたのにCORSエラーになる
「CORS の有効化」をオンにしたのに
ハマりポイント
APIGateway設定で「CORS の有効化」をオンにしているのに,
Access to XMLHttpRequest at 'https://xxxxxxx.execute-api.ap-northeast-1.amazonaws.com/xxx/xxxx' from origin 'http://xxxxx' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
とエラーが返ってくる.
解決策
Lambdaのreturnのヘッダーに以下のように,Access-Contraolについて書かなきゃダメだった.
return {
'isBase64Encoded': False,
"headers": {
"Access-Control-Allow-Origin" : "*",
"Access-Control-Allow-Credentials": "true"
},
'statusCode': 200,
'body': {}
}
Author And Source
この問題について(Lambda+APIGateway設定で「CORS の有効化」をオンにしたのにCORSエラーになる), 我々は、より多くの情報をここで見つけました https://qiita.com/shmp/items/3186cb5a0868b51abcb3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .