我正在使用Magento 2 API制作Passthrough API网关,以搜索某些产品(GET方法)。在此document中,参数如下所示:
searchCriteria[filter_groups][0][filters][0][field]:name
searchCriteria[filter_groups][0][filters][0][value]:%tea%
searchCriteria[filter_groups][0][filters][0][condition_type]:like
当我尝试提供给我的终结点API URL时,它可以工作,结果如下所示:
然后,我开始在AWS中创建Passthrough API Gateway,但不幸的是,AWS API Gateway不允许我在URL查询字符串参数中使用消息[]
输入方括号(warnings : [], errors : [Parameter name should match the following regular expression: ^[a-zA-Z0-9._$-]+$]
)。