AWS Lambda:如何访问HTTP请求属性

时间:2017-02-16 22:17:38

标签: http aws-lambda

我正在向外部API发送HTTP请求,但无法弄清楚如何访问其内部主体。所有节目都在Lambda上进行。

例如:

https.get(url, function(res) {
    console.log(res);
});

我知道如何获取res.headers,如何获取res.statusCode,如何获取res.status等,但不知道如何获取我需要的数据。 console.log(res)没有给我我想要的东西,只是下面的废话:

enter image description here

1 个答案:

答案 0 :(得分:0)

我发现了here

https.get(url, function(res) {
    res.on('data', function (chunk) {
    console.log(JSON.parse(chunk.toString());
});