所以,为了清楚起见,我花了几个小时在谷歌搜索,但这些都没有。这不是一个低效率的帖子"。
这是我一直在尝试的代码示例。它不起作用。也没有像response.headers=[{location:"foo"}]
或exports.handler = (event, context, callback) => {
if(request.uri === "/") {
var response = {
statusCode: 301,
headers: {
"location" : [{
key: "Location",
value: "foo"
}]
},
body: null
};
callback(null, response);
}
或其他八种方式做出回应。
mouseenter
我已尝试过以下链接:
答案 0 :(得分:4)
您在问题中提到了此示例的链接;它应该与Lambda代理集成一起使用:
'use strict';
exports.handler = function(event, context, callback) {
var response = {
statusCode: 301,
headers: {
"Location" : "http://example.com"
},
body: null
};
callback(null, response);
};
来源:http://blog.ryangreen.ca/2016/01/04/how-to-http-redirects-with-api-gateway-and-lambda/
否则,请尝试使用this page of example functions中的此示例:
'use strict';
exports.handler = (event, context, callback) => {
/*
* Generate HTTP redirect response with 302 status code and Location header.
*/
const response = {
status: '302',
statusDescription: 'Found',
headers: {
location: [{
key: 'Location',
value: 'http://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html',
}],
},
};
callback(null, response);
};