Amazon Lambda / API网关/ Amazon Lex-错误:已处理

问题描述 投票:1回答:1

我创建了一个API网关,该网关链接到我的Amazon Lex机器人。它过去曾起作用,但由于某种原因,它现在显示此错误消息。当我在Lex的“测试聊天机器人”功能中对其进行测试时,该机器人即可工作。

我将新功能设置为'Lambda初始化和验证后发生错误。

错误消息:

START RequestId: e18b78ef-3177-4e2f-999a-33cd48258a60 Version: $LATEST
2020-01-26T05:37:01.003Z    e18b78ef-3177-4e2f-999a-33cd48258a60    ERROR   Invoke Error    {"errorType":"Error","errorMessage":"handled","stack":["Error: handled","    at _homogeneousError (/var/runtime/CallbackContext.js:13:12)","    at postError (/var/runtime/CallbackContext.js:30:54)","    at done (/var/runtime/CallbackContext.js:57:7)","    at fail (/var/runtime/CallbackContext.js:67:7)","    at /var/runtime/CallbackContext.js:105:16","    at processTicksAndRejections (internal/process/task_queues.js:93:5)"]}END RequestId: e18b78ef-3177-4e2f-999a-33cd48258a60
REPORT RequestId: e18b78ef-3177-4e2f-999a-33cd48258a60  Duration: 579.06 ms Billed Duration: 600 ms Memory Size: 128 MB Max Memory Used: 93 MB  

API:

var AWS = require('aws-sdk');
AWS.config.update({region: 'us-east-1'});

var lexruntime = new AWS.LexRuntime();

function main(event) {
  var params = {
    botAlias: 'myBot',
    botName: 'myBot',
    inputText: event.body.inputText, 
    userId: 'myUserId'

  };
  return new Promise((resolve, reject) => {
    lexruntime.postText(params, function(err, data) {
      if (err) { 
        var err2 = err.errorMessage
        reject(err2)
      }
      else {     
        resolve({data})
      }
    });
  });
}

exports.handler = main;

我在错误消息出现之前立即创建的新功能:

'use strict';

function close(sessionAttributes, intentName, slots, slotToElicit, message) {
    return {
        sessionAttributes,
        dialogAction: {
            type: 'ElicitSlot',
            intentName: intentName,
            slots,
            slotToElicit,
            message,
        },
    };
}

function delegate(sessionAttributes, slots){
    return { 
        sessionAttributes: sessionAttributes,
        dialogAction: {
            type: "Delegate",
            slots: slots
        }    
    };
}

function dispatch(intentRequest, callback) {
    const sessionAttributes = intentRequest.sessionAttributes;
    if(!sessionAttributes.userStatus){
        var param1 = {
            Email: null
        };
        intentRequest.currentIntent.slots = param1;
        callback(close(sessionAttributes, 'Verify', intentRequest.currentIntent.slots, 'Email', { "contentType": "PlainText", "content": "Please enter your email"}));
    }
    else {
        callback(delegate(sessionAttributes, intentRequest.currentIntent.slots));
    }
}

exports.handler = (event, context, callback) => {
    try {
        dispatch(event,
            (response) => {
                callback(null, response);
            });
    } catch (err) {
        callback(err);
    }
};

错误的含义是什么?

amazon-web-services aws-lambda aws-api-gateway amazon-lex
1个回答
0
投票

我发现了问题:

固定:

function dispatch(intentRequest, callback) {
    var sessionAttributes = intentRequest.sessionAttributes;
    if(sessionAttributes){
        if(sessionAttributes.userStatus){
            callback(delegate(sessionAttributes, intentRequest.currentIntent.slots));
        }
    }
    else {
        var param1 = {
            Email: null
        };
        intentRequest.currentIntent.slots = param1;
        callback(close(sessionAttributes, 'Verify', intentRequest.currentIntent.slots, 'Email'));
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.