我正在尝试使用AWS API网关创建API
为了您的参考,我的后端服务正在amazon-linux机器上运行。
Checked logs:
Execution log for request test-request
Tue Sep 08 16:43:54 UTC 2015 : Starting execution for request: test-invoke-request
Tue Sep 08 16:43:54 UTC 2015 : API Key: test-invoke-api-key
Tue Sep 08 16:43:54 UTC 2015 : Method request path: {}
Tue Sep 08 16:43:54 UTC 2015 : Method request query string: {}
Tue Sep 08 16:43:54 UTC 2015 : Method request headers: {Authorization=************p1c2Vy}
Tue Sep 08 16:43:54 UTC 2015 : Method request body before transformations: null
Tue Sep 08 16:43:54 UTC 2015 : Execution failed due to configuration error: Invalid endpoint address
您能否告诉我如何解决此问题?
答案 0 :(得分:1)
尝试method.request。标题。授权
答案 1 :(得分:1)
Varun是对的,你的映射表达式是错误的。
请求中参数的表达式格式为" method.request。[source]。[name]"其中source是path / querystring / header,name是方法请求中定义的参数的名称。
对于集成响应,格式与您用响应替换请求的情况相同,并且还要注意只有标头可用于在响应中进行映射。
答案 2 :(得分:0)