有没有办法在方法请求和集成请求中定义URL查询字符串参数,并将查询字符串传递给HTTP代理?
例如,如果是https:// {api id} -api.us-east-1.amazonaws.com/test/user?start=1&end=10
查询字符串 1.开始 结束
如果我将URL查询字符串参数放在方法请求和集成请求中,那么我就可以获得两个查询字符串。但是,如果我不添加它们并在postman中发出请求,那么在后端我没有得到两个查询字符串。
我想在没有在方法请求和集成请求中定义的情况下获取查询字符串。原因是我不想在手中输入所有参数。
有办法做到这一点吗?
我正在使用HTTP代理,这是我正在使用的模板映射。 (实际上是方法请求直通下拉)。
#set($allParams = $input.params())
{
"body-json" : "$input.json('$')",
"params" : {
#foreach($type in $allParams.keySet())
#set($params = $allParams.get($type))
"$type" : {
#foreach($paramName in $params.keySet())
"$paramName" : "$util.escapeJavaScript($params.get($paramName))"
#if($foreach.hasNext),#end
#end
}
#if($foreach.hasNext),#end
#end
},
"stage-variables" : {
#foreach($key in $stageVariables.keySet())
"$key" : "$util.escapeJavaScript($stageVariables.get($key))"
#if($foreach.hasNext),#end
#end
},
"context" : {
"account-id" : "$context.identity.accountId",
"api-id" : "$context.apiId",
"api-key" : "$context.identity.apiKey",
"authorizer-principal-id" : "$context.authorizer.principalId",
"caller" : "$context.identity.caller",
"cognito-authentication-provider" : "$context.identity.cognitoAuthenticationProvider",
"cognito-authentication-type" : "$context.identity.cognitoAuthenticationType",
"cognito-identity-id" : "$context.identity.cognitoIdentityId",
"cognito-identity-pool-id" : "$context.identity.cognitoIdentityPoolId",
"http-method" : "$context.httpMethod",
"stage" : "$context.stage",
"source-ip" : "$context.identity.sourceIp",
"user" : "$context.identity.user",
"user-agent" : "$context.identity.userAgent",
"user-arn" : "$context.identity.userArn",
"request-id" : "$context.requestId",
"resource-id" : "$context.resourceId",
"resource-path" : "$context.resourcePath"
}
}
答案 0 :(得分:1)
您不必在模板中指定每个参数,您可以在映射模板中执行以下操作以传递任何参数:
"queryParams": {
#foreach($param in $input.params().querystring.keySet())
"$param": "$util.escapeJavaScript($input.params().querystring.get($param))" #if($foreach.hasNext),#end
#end
}
现在,在API网关用户界面中,您只需选择"方法请求直通"在"生成模板"下拉列表,它将为您创建一个模板,用于传递标题和参数以及其他内容,而无需指定要传递的特定属性。
答案 1 :(得分:1)
如AWS Forums所述,您必须明确定义所有查询字符串参数。查询字符串参数没有直通支持。