AWS Api Gateway查询字符串集合格式多

时间:2016-10-07 08:56:02

标签: amazon-web-services swagger aws-api-gateway

我们目前正在从一个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请求时,它只将最后一个排序参数传递给我的集成。

有人知道这是否支持吗?

1 个答案:

答案 0 :(得分:1)

不幸的是,目前API Gateway不支持此功能。

谢谢! Ritisha。