AWS Lambda 无法对外部 API 进行 REST 调用

dev*_*rsh 1 request amazon-web-services alexa node.js aws-lambda

我正在使用 nodeJS 代码使用请求模块进行休息调用。我也使用了回调函数,但请求函数没有被执行。

我的流程转到函数 searchTSTData 但请求方法没有被执行。

从回调函数中,我只得到 responseString = 'Yet to make query rest',我已在 searchTSTData 函数中对其进行了初始化。它不会根据 API 返回的响应进行更新,该响应应该是错误或成功响应字符串。

我已将模块包含在 zip 中,因为 lambda 不会抛出错误并通过测试。另外我确定请求模块不能像在 Cloudwatch 日志中那样工作我没有看到我在请求中写的任何 console.logs。

请建议我哪里出错了。我是 NodeJS 的新手。

这是代码 -

'use strict';
const request = require('request');
const Alexa = require('alexa-sdk');
const APP_ID = 'amzn1.ask.skill.80a49cf5-254c-123a-a456-98745asd21456';  

const languageStrings = {
    'en': {
        translation: {
            TST: [
                'A year on Mercury is just 88 days long.',
            ],
            SKILL_NAME: 'TEST',
            GET_TST_MESSAGE: "Here's your TST: You searched for ",
            HELP_MESSAGE: 'You can say get me a TST, or, you can say exit... What can I help you with?',
            HELP_REPROMPT: 'What can I help you with?',
            STOP_MESSAGE: 'Goodbye!',
        },
    },
};

const handlers = {
    'LaunchRequest': function () {
        this.emit('GetTST');
    },
    'GetNewTSTIntent': function () {
        this.emit('GetTST');
    },
    'GetTST': function () {
        // Get a random space fact from the space facts list
        // Use this.t() to get corresponding language data
        const inputValue = this.event.request.intent.slots.Search.value;
        var finalResponse = "Some error occurred in code. Please try again later.";
        console.log('Input recieved as '+inputValue);

        searchTSTData(inputValue, function (response){
        console.log('trying to call');
                        finalResponse = response;                                                    
         });

         console.log("after function call");

        // Create speech output
        const speechOutput = this.t('GET_TST_MESSAGE')  + inputValue+". Here are the results " +finalResponse;
        this.emit(':tellWithCard', speechOutput, this.t('SKILL_NAME'), speechOutput);
    },
    'AMAZON.HelpIntent': function () {
        const speechOutput = this.t('HELP_MESSAGE');
        const reprompt = this.t('HELP_MESSAGE');
        this.emit(':ask', speechOutput, reprompt);
    },
    'AMAZON.CancelIntent': function () {
        this.emit(':tell', this.t('STOP_MESSAGE'));
    },
    'AMAZON.StopIntent': function () {
        this.emit(':tell', this.t('STOP_MESSAGE'));
    },
};

exports.handler = function (event, context) {
    const alexa = Alexa.handler(event, context);
    alexa.APP_ID = APP_ID;
    // To enable string internationalization (i18n) features, set a resources object.
    alexa.resources = languageStrings;
    alexa.registerHandlers(handlers);
    alexa.execute();
};


function searchTSTData(searchString,callback){
    var responseString = 'Yet to make query rest';

    request({
    url: 'https://api.google.com/getresultsInJson',
    method: 'GET'
    }, function (error, response, body) {
            if (error) {
                responseString = 'Error received from rest api. Please try again after some time.';
                } else if(response.statusCode===200){
                responseString = 'Sucess Success';
                }else{
                responseString = 'Nothing is working'; 
                }
            });
            callback(responseString);
           }
Run Code Online (Sandbox Code Playgroud)

小智 6

你的 lambda 方法是在 VPC 中吗?检查这个http://docs.aws.amazon.com/lambda/latest/dg/vpc.html你需要给它外部访问