CORS with API Gateway HTTP

0

On API Gateway REST it's posible to handle the OPTIONS with mock responses. AWS Amplify deploy the API using it.

But how do the same on API Gateway HTTP?

I'm reading this document. https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-cors.html

And works fine for the POST and GET routes that I need to implement on lambda, but ¿I need to configure a dummy lambda over OPTIONS just to support CORS?

已提問 6 個月前檢視次數 283 次
2 個答案
1

Yes, you need to configure a dummy lambda over OPTIONS just to support CORS when using API Gateway HTTP. This is because API Gateway HTTP **does not automatically handle OPTIONS ** requests, so you need to create a mock integration that returns the appropriate CORS headers.

profile picture
已回答 6 個月前
  • If I need to handle the OPTIONS request I don't get the point of the CORS feature on API Gateway HTTP. I'm missing something? what is the benefit if I need to implement the CORS headers in any case?

  • Can someone please share the applicable code to handle OPTIONS preflight CORS error. It will be very helpful.

    Thanks in advance.

0

Why API Gateway HTTP does not handle preflight OPTIONS CORS error. It is a bug from there side.

Please provide a documented solution other wise so that we can get rid of this issue.

(Api is working from POSTMAN and other similar kind of clients tool but not working when trying to access from any java script based application like react js etc...)

With the below code, it should add some header functionality so that it can handle the CORS error. ``

Thanks.

import json


def lambda_handler(event, context):
    response = {
        "isAuthorized": False,
        "context": {
            "stringKey": "value",
            "numberKey": 1,
            "booleanKey": True,
            "arrayKey": ["value1", "value2"],
            "mapKey": {"value1": "value2"}
        }
    }

    try:
        if (event["headers"]["authorization"] == "secretToken"):
            response = {
                "isAuthorized": True,
                "context": {
                    "stringKey": "value",
                    "numberKey": 1,
                    "booleanKey": True,
                    "arrayKey": ["value1", "value2"],
                    "mapKey": {"value1": "value2"}
                }
            }
            print('allowed')
            return response
        else:
            print('denied')
            return response
    except BaseException:
        print('denied')
        return response
Sourav
已回答 2 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南