Hey folks,
I'm working on my very first Alexa app, and I've set up a basic HelloIntent with simple inputs that I want to trigger a response.
Right now, I'm getting the response for *ANYTHING* said within the app, however. Not simply the trigger intents.
I'm wondering if it's because I need a catch-all or some other response command so it doesn't default to the handlers. I'm still learning and don't know. Here's hoping someone can point out the flaw.
My basic Lambda code is as follows:
"use strict"; var Alexa = require("alexa-sdk"); var handlers = { "HelloIntent": function () { this.response.speak("Lorem Ipsum Dolor"); this.emit(':responseReady'); }, "LaunchRequest": function () { this.response.speak("Rolod muspi merol"); this.emit(':responseReady'); } }; exports.handler = function(event, context, callback){ var alexa = Alexa.handler(event, context); alexa.registerHandlers(handlers); alexa.execute(); }; <br>