我正在测试 AWS 的 API Gateway,但我无法让它读取来自 Angular 的 POST 请求中包含的查询字符串参数。
但是,当我使用 cURL 时,AWS 的 API 网关会检测到查询字符串参数,所以这一定是 Angular 问题。我是否缺少标题或其他内容?
仅供参考,我已经在 API Gateway 上正确设置了模板映射,所以这不是问题。
https://cabvt12afasf4.execute-api.us-east-1.amazonaws.com/resource?access_token=1234112313123
resourceCreate: {
method: 'POST',
isArray: false,
params: {
access_token: access_token
},
url: 'https://cabvtj3br4.execute-api.us-east-1.amazonaws.com/resource'
},