web-dev-qa-db-ja.com

2018年にAWS Lambdaのヘッダーにアクセスする方法

はい、私はこれが重複していることを知っていますが、提供されたマッピングテンプレートソリューション herehere および here が考案されて以来、状況は変更されています。プロキシ統合(AWSが推奨するアプローチ)では、テンプレートにアクセスできません。では、どうやってヘッダーにアクセスするのですか?

私はオブジェクトモデルを次のようなもので使用しようとしました:

event.headers
event.headers["X-Requested-With"]

var headerItem = "x-requested-with"
event.headers.headerItem

など、何も定義されていないようです。

Cloudwatchによると、イベントは次のとおりです。

{
    "resource": "/contactformlambda",
    "path": "/contactformlambda",
    "httpMethod": "POST",
    "headers": {
        "Accept": "application/json, text/plain, */*",
        "Accept-Encoding": "gzip, deflate, br",
        "Accept-Language": "en-US,en;q=0.9",
        "cache-control": "no-cache",
        "CloudFront-Forwarded-Proto": "https",
        "CloudFront-Is-Desktop-Viewer": "true",
        "CloudFront-Is-Mobile-Viewer": "false",
        "CloudFront-Is-SmartTV-Viewer": "false",
        "CloudFront-Is-Tablet-Viewer": "false",
        "CloudFront-Viewer-Country": "AU",
        "content-type": "text/plain",
        "Host": "ovo5xmxf7e.execute-api.ap-southeast-2.amazonaws.com",
        "Origin": "http://localhost:4200",
        "pragma": "no-cache",
        "Referer": "http://localhost:4200/contact",
        "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36",
        "Via": "2.0 49d473f12cd3746d92748f257e16ca9e.cloudfront.net (CloudFront)",
        "X-Amz-Cf-Id": "7_PvRhkwbB7wmB1n8EFgE9s84q1xPYZ_uKwAjwYPXSv383M-fmDTgQ==",
        "X-Amzn-Trace-Id": "Root=1-5a826e92-b4425f8069686c808cc2d500",
        "X-Forwarded-For": "155.144.114.41, 54.240.152.46",
        "X-Forwarded-Port": "443",
        "X-Forwarded-Proto": "https",
        "x-requested-with": "Angular5"
    },
    "queryStringParameters": null,
    "pathParameters": null,
    "stageVariables": null,
    "requestContext": {
        "requestTime": "13/Feb/2018:04:50:26 +0000",
        "path": "/prod/contactformlambda",
        "accountId": "499908792600",
        "protocol": "HTTP/1.1",
        "resourceId": "i6i1qv",
        "stage": "prod",
        "requestTimeEpoch": 1518497426058,
        "requestId": "683aeec6-1079-11e8-a419-318ae32195ef",
        "identity": {
            "cognitoIdentityPoolId": null,
            "accountId": null,
            "cognitoIdentityId": null,
            "caller": null,
            "sourceIp": "155.144.114.41",
            "accessKey": null,
            "cognitoAuthenticationType": null,
            "cognitoAuthenticationProvider": null,
            "userArn": null,
            "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36",
            "user": null
        },
        "resourcePath": "/contactformlambda",
        "httpMethod": "POST",
        "apiId": "ovo5xmxf7e"
    },
    "body": "{\"subject\":\"Enquiry from ZenithWebFoundry\",\"name\":\"Mike\",\"number\":\"0415118180\",\"email\":\"[email protected]\",\"comment\":\"this is a test from localhost\"}",
    "isBase64Encoded": false
}

「x-requested-with」ヘッダーはそこにありますが、プログラムでアクセスしようとすると、定義されていないようです

8
Michael Coxon

event.headers

documentation から、それは述べています...

{
    "resource": "Resource path",
    "path": "Path parameter",
    "httpMethod": "Incoming request's method name"
    "headers": {Incoming request headers}
    "queryStringParameters": {query string parameters }
    "pathParameters":  {path parameters}
    "stageVariables": {Applicable stage variables}
    "requestContext": {Request context, including authorizer-returned key-value pairs}
    "body": "A JSON string of the request payload."
    "isBase64Encoded": "A boolean flag to indicate if the applicable request payload is Base64-encode"
}

更新(新しく提供された情報に基づいて):

あなたが探しているヘッダーはx-requested-withいいえX-Requested-With(大文字と小文字に注意)。

// This will yield nothing, as it is the wrong key
event.headers['X-Requested-With']

// This will give you what you need.
event.headers['x-requested-with']

JavaScriptでのオブジェクト検索では大文字と小文字が区別されることに注意してください。

変数を使用してそれを取得したい場合は、以下を実行できます...

var headerItem = "x-requested-with"
event.headers[headerItem]
12
dashmug