question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

AMAZON.StopIntent

See original GitHub issue

I am having difficulty in hooking up the standard stop intent. While Amazon.HelpIntent works as expected, the stop intent never gets called, resulting in “Unable to generate request for your skill.” error.

Is there anything special that needs to be done for stop intents?

app.intent('AMAZON.StopIntent', { "slots": {}, "utterances": [ "stop" ] }, function(req, res) { console.log('app.AMAZON.StopIntent'); res .say('Okay') .shouldEndSession(true); } );

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:7

github_iconTop GitHub Comments

1reaction
sohelsdcommented, May 2, 2017

I decided to not use the Skill Builder beta and the stop intent is working fine. Potentially bug with the new skill builder.

1reaction
sohelsdcommented, May 1, 2017

Same thing on Alexa device. AMAZON.StopIntent is just not honored in both (simulator or device) cases. I did verify that the intent is required and specified in the schema. I am using the new Skills builder beta. Not sure if that makes any difference.

Read more comments on GitHub >

github_iconTop Results From Across the Web

AMAZON.StopIntent - Amazon Lex
AMAZON.StopIntent ... Responds to words and phrases that indicate that the user wants to stop processing the current intent and end the interaction...
Read more >
Standard Built-in Intents | Alexa Skills Kit - Amazon Developer
StopIntent. stop; off; shut up. Exits the skill. Your skill must implement this intent and shouldEndSession must be true or null in the...
Read more >
AMAZON.StopIntent - Amazon Lex - AWS Documentation
Responds to words and phrases that indicate that the user wants to stop processing the current intent and end the interaction with a...
Read more >
Implement the Built-in Intents | Alexa Skills Kit
AMAZON.StopIntent. The following example shows the intent schema with four built-in intents and a custom intent called WeatherOnThisDay .
Read more >
Tips for Using Built-in Intents for Your Skill - Amazon Developer
StopIntent , more specific utterances that could be unique to your skill, such as "stop the quiz" or "stop asking questions", may not...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found