api gateway trying to use method.request.body in URL Path Parameters

0

Created a api gateway to s3 directory service, and everything is working I am trying to use method.request.body..$.cust in the URL Path Parameters to extract the request body info as a s3 destination. The request body is as below, {"cust" : "cust123"} Also tried method.request.body..$['cust'] and method.request.body..$.cust

Tried various different ways including but it doesn't seem to recognize the method.request.body, i tried to use the following links, https://docs.aws.amazon.com/apigateway/latest/developerguide/request-response-data-mappings.html https://docs.hevodata.com/sources/engg-analytics/streaming/rest-api/writing-jsonpath-expressions/ http://jsonpath.com/

tans
已提问 9 个月前853 查看次数
2 回答
1

This is doable using an API Gateway Request Mapping Template. First, I've made some assumptions:

  • You have a POST or PUT API method with a Request Body json payload something like this: {"cust" : "cust123"}
  • In your Integration Request you are making a direct integration call to S3 to GET an object with a Path override that has a path parameter ending with or containing "/{cust}"

If so, add the following Request Mapping Template:

#set($body-json = $util.parseJson($input.json('$')))
#set($context.requestOverride.path.cust = $body-json.cust)
profile picture
已回答 9 个月前
  • Thanks for the reply.

    The integration request is a direct integration (PUT) into S3. with a path override set to {bucket}/{key}

    In URL Path parameters, bucket = 's3_loc' key = method.request.body..$.cust

    So based on this, I may have to do,

    #set($body-json = $util.parseJson($input.json('$'))) #set($context.requestOverride.path.key = $body-json.cust)

0

I tried this and got

Method request body before transformations: [Binary Data] Execution failed due to configuration error: Cannot map binary data to parameters

And I have these set in the settings like below, Enter image description here

Enter image description here

Enter image description here

tans
已回答 9 个月前
  • The key in your path comes from cust in the json request body. You won't need the URL Path Parameters setting for key since you aren't mapping it any longer, you are setting it in the Mapping template.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则