我正在尝试将来自 Lambda 函数的 JSON 输出映射到 API Gateway 调用的标头。作为此处的示例,我们可以考虑重定向场景。所以我想Location
在我的 API Gateway 调用的响应中添加一个标头。
来自 Lambda 函数的 JSON 输出:
{
Location: 'http://google.com'
}
在“方法响应”->“响应标头”中,我可以将Location
标头添加到所需的 HTTP 状态代码。
然后在“Integration Response”->“Header Mappings”中,我可以将标头的映射添加Location
为something。
现在我的问题是这应该是什么?
注意:我已经尝试过integration.response.header.Location
,或使用“映射模板”,但到目前为止还没有运气。
目前可能无法实现(https://forums.aws.amazon.com/thread.jspa?messageID=651482),但由于 API Gateway/Lambda 目前发展如此之快,我会无论如何问。