第一项Alexa技能

时间:2018-12-27 21:37:01

标签: node.js amazon-web-services alexa alexa-skill alexa-app

我正在尝试使用Node.js开发我的第一个Alexa技能,每次尝试进行测试时,都会收到“请求的技能响应存在问题”。

我正在尝试创建一个随机的餐厅生成器。很简单,它是一系列餐厅,选择了一个随机索引,Alexa说这家餐厅。我不知道哪里出问题了,如果有人可以帮助我上载我的.json和.js文件,我将非常感谢。

index.js:

const Alexa = require('alexa-sdk');

const APP_ID = 'amzn1.ask.skill.9350e65b-fb41-48ce-9930-98b5156eb63c';

const handlers = {
  'LaunchRequest': function () {
    this.emit('randomRestaurantGeneratorIntent');
  },
  'randomRestaurantGeneratorIntent': function () {
    var randomResturant;
    var foodArray = ['IHOP', 'Dennys', 'burger king'];
    randomResturant = foodArray[Math.floor(Math.random() * foodArray.length)];
     
    
    this.response.speak(randomResturant);
    this.emit(':responseReady');
  },
  'AMAZON.HelpIntent': function () {
    const say = 'You can say what did I learn, or, you can say exit... How can I help you?';

    this.response.speak(say).listen(say);
    this.emit(':responseReady');
  },
  'AMAZON.CancelIntent': function () {
    this.response.speak('Bye!');
    this.emit(':responseReady');
  },
  'AMAZON.StopIntent': function () {
    this.response.speak('Bye!');
    this.emit(':responseReady');
  }
 
};

exports.handler = function (event, context, callback) {
  const alexa = Alexa.handler(event, context, callback);
  alexa.APP_ID = APP_ID;
  alexa.registerHandlers(handlers);
  alexa.execute();
};

randomResturantGeneratorIntent.JSON:

{
    "interactionModel": {
        "languageModel": {
            "invocationName": "random restaurant generator",
            "intents": [
                {
                    "name": "AMAZON.CancelIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.HelpIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.StopIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.NavigateHomeIntent",
                    "samples": []
                },
                {
                    "name": "randomRestaurantGeneratorIntent",
                    "slots": [],
                    "samples": [
                        "Launch Random Restaurant Generator "
                    ]
                }
            ],
            "types": []
        }
    }
}

谢谢

5 个答案:

答案 0 :(得分:0)

在内联编辑器中尝试此功能,以获得第一个技能。并尝试使用打开随机餐厅生成器

进行测试
/**
 * Called when the user launches the skill without specifying what they want.
 */
function onLaunch(launchRequest, session, callback) {
    console.log(`onLaunch requestId=${launchRequest.requestId}, sessionId=${session.sessionId}`);

    // Dispatch to your skill's launch.
    getWelcomeResponse(callback);
}


function buildResponse(sessionAttributes, speechletResponse) {
    return {
        version: '1.0',
        sessionAttributes,
        response: speechletResponse,
    };
}

function getWelcomeResponse(callback) {
    // If we wanted to initialize the session to have some attributes we could add those here.
    const sessionAttributes = {};
    const cardTitle = 'Welcome';
    const speechOutput = 'Welcome to Your First Alexa Skill';
    // If the user either does not reply to the welcome message or says something that is not
    // understood, they will be prompted again with this text.
    const repromptText = 'Please tell me What do you want to know?';
    const shouldEndSession = false;

    callback(sessionAttributes,
        buildSpeechletResponse(cardTitle, speechOutput, repromptText, shouldEndSession));
}

function buildSpeechletResponse(title, output, repromptText, shouldEndSession) {
    return {
        outputSpeech: {
            type: 'PlainText',
            text: output,
        },
        //For testing purpose only
        // card: {
        //     type: 'Simple',
        //     title: `SessionSpeechlet - ${title}`,
        //     content: `SessionSpeechlet - ${output}`,
        // },
        reprompt: {
            outputSpeech: {
                type: 'PlainText',
                text: repromptText,
            },
        },
        shouldEndSession,
    };
}

exports.handler = (event, context, callback) => {
    try {
        console.log(`event.session.application.applicationId=${event.session.application.applicationId}`);


        if (event.request.type === 'LaunchRequest') {
            onLaunch(event.request,
                event.session,
                (sessionAttributes, speechletResponse) => {
                    callback(null, buildResponse(sessionAttributes, speechletResponse));
                });
        }

    }
    catch (err) {
        callback(err);
    }
};

答案 1 :(得分:0)

我已经使用lambda两年了,在我开始使用AWS cloud9之前,为我调试和部署非常糟糕。

我建议您使用aws cloud9,这是一个用于编写,运行和调试代码的云IDE。您可以将lambda函数作为本地环境运行。

检查他们的website以获取更多信息。这很耗时,但完全值得,特别是如果您想发展Alexa技能。

答案 2 :(得分:0)

在大多数情况下,您会因为两件事而收到该错误:

  1. 您的lambda函数中没有触发器“ Alexa Skill Kit”。如果没有,则可以在lambda函数的配置的设计器选项卡中添加一个。

  2. 您的lambda函数中没有必要的模块。您可以使用“ npm install ask-sdk-core”在本地添加它们,然后上传文件夹。

答案 3 :(得分:0)

尝试这种方式来呈现响应。

var speechOutput =  'Your response here';
var reprompt = "How can I help?";
this.response.speak(speechOutput);
this.response.listen(reprompt);
this.emit(":responseReady");

答案 4 :(得分:0)

使用这种方式:

var speechOutput =  'Your response here';
var reprompt = "How can I help?";
this.response.speak(speechOutput);
this.response.listen(reprompt);
this.emit(":responseReady");
相关问题