调用外部API会导致“内部服务器错误”

时间:2018-09-22 13:19:22

标签: node.js amazon-web-services api aws-lambda

我正在尝试制作一个非常简单的Lambda函数。我只是在调用API,并想返回结果。但是,它总是返回“内部服务器错误”。

我没有VPC。

这是我正在使用的代码,我尝试使用node-fetch模块获取API。

'use strict';

module.exports.hello = async (event, context, callback) => {
    const fetch = require('node-fetch');
    fetch('http://api.datamuse.com/words?rel_syn=flower&max=5')  
    .then(res => {
      callback(null, 'success')
    });
};

这是日志

START RequestId: xxxxxx Version: $LATEST END RequestId: xxxxxx REPORT RequestId: xxxxxx Duration: 413.42 ms Billed Duration: 500 ms Memory Size: 128 MB Max Memory Used: 20 MB

0 个答案:

没有答案