我们目前正在从一个swagger文件中导入我们的API,我们将查询字符串参数定义为
- name: sort
in: query
description: The sort key and direction.
required: false
type: string
collectionFormat: multi
但似乎没有相应的x-amazon-apigateway-integration.requestParameters
来支持collectionsFormat: multi
。当我发送像?sort=price,DESC&sort=created,ASC
这样的API请求时,它只将最后一个排序参数传递给我的集成。
有人知道这是否支持吗?
答案 0 :(得分:1)
不幸的是,目前API Gateway不支持此功能。
谢谢! Ritisha。