"paths": {
"/{x}/{y}": {
"put": {
x-amazon-apigateway-integration": {
"uri": "https://hostname/contextpath/{x}/{y}"
"httpMethod": "PUT",
"type": "http"
}
}
}
如果我确实对该资源有查询参数,那么我的调用URL将是https://apiid.execute-api.us-east-2.amazonaws.com/dev/x/y?queryparam1=value1&queryparam2=value2&queryparam3=value3&queryparam4=value4。 我的http后端的集成请求中的uri类型是什么? 如何在调用https://hostname/contextpath/ {x} / {y}时传递查询参数? = & = ?有人可以建议我与http类型集成时如何传递查询参数吗?