admin管理员组

文章数量:1389750

The log format in AWS Api Gateway is set to

{
    "requestTime": "$context.requestTime",
    "requestId": "$context.requestId",
    "httpMethod": "$context.httpMethod",
    "resourcePath": "$context.resourcePath",
    "status": $context.status,
    "path": "$context.path",
}

How can I get the information about query parameters sent.

Example : /api/v1/pets?name="name1"

path provides me the information about /api/v1/pets How can I get the query parameters logged in API gateway too.

本文标签: amazon web servicesHow to get query parameter info in API gateway LogStack Overflow