I am having trouble with implementing a confirmation for an intent. The documentation is really vague. I am currently using jovo framework in writing my code with nodeJs which saved me a ton of time.
This is an example of how I want to confirm the user's request:
User: Alexa, play NRJ radio
Alexa: Do you want me to play NRJ radio?
User: Yes
Alexa: I will play NRJ radio
Alexa plays NRJ radio
I have enabled intent confirmation in the Alexa console and I thought that was enough. But, it isn't. And I need to know what to do exactly to make this work. Thank you.
I have read the documentation multiple times and I couldn't understand how I should use dialog.delegate to achieve my goal and whether I should modify the JSON file in the console in one way or another.
This is really confusing so all help is welcome. Thank you :)
Alexa how to implement intent confirmation?
773 views Asked by AG_HIHI At
1
There are 1 answers
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in NODE.JS
- Using Puppeteer to scrape a public API only when the data changes
- How to request administrator rights?
- How do I link two models in mongoose?
- Variable inside a Variable, not updating
- Unable to Post Form Data to MongoDB because of picturepath
- Connection terminated unexpectedly while performing multi row insert using pg-promise
- Processing multiple forms in nodejs and postgresql
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How to change the Font Weight of a SelectValue component in React when a SelectItem is selected?
- My unban and ban commands arent showing when i put the slash
- how to make read only file/directory in Mac writable
- How can I outsource worker processes within a for loop?
- Get remote MKV file metadata using nodejs
- Adding google-profanity-words to web page
- Products aren't displayed after fetching data from mysql db (node.js & express)
Related Questions in ALEXA-SKILLS-KIT
- ChangeReport does not work despite "202 accepted" response
- Customize Alexa QnA
- How to register an Amazon Alexa Servlet in a Java Springboot 3.xx application
- Alexa Echo Device doesn't show SVG image while it's showing fine in the Alexa developer console test simulator and Multimodal Responses Authoring tool
- Alexa spoken text not accepting '<' character
- Skills using APL/APLA on 3gen (ship1.1) devices
- How to register for Alexa for Apps preview?
- "The response sent by the skill was invalid. Use JSON schema validation to validate the skill response " issue while accessing from alexa skill
- Issue importing Python packages in Alexa-hosted skill
- Accept raw text for Alexa skill
- Repromting in Alexa Skill
- Alexa Skill for TV: how to allow kids to use the skill?
- Say a message for longer on alexa developer with python
- Amazon Alexa skill: Is there a way to have some intents not be allowed or listened for on a page in a skill?
- Is it possible to record meetings through Alexa?
Related Questions in AMAZON-ECHO
- Have Google Home trigger smart device
- How to fix "There was a problem with the requested skill's response" error?
- Can I use the "skills" word to label my product extensions?
- Lambda function not working with Alexa skill intend?
- How to DISABLE Alexa's "holiday surprise protection"
- How do I trigger Alexa from an external software?
- How to lock my AWS lamda to my echo device only
- Use the Amazon Alexa Skill CLI to update the Interaction Model
- Alexa how to implement intent confirmation?
- Need helping adding Yes/No prompt to Fact template to iterate/ get another fact
- How to have Alexa perform button "SetLight" directives consecutively?
- Create a toggle between two actions in IFTTT
- Can Alexa (echo dot) access a skill that is still in the development mode?
- return multiple audio files to stream in single request
- Alexa Skill with Multiple Yes No Questions
Related Questions in JOVO-FRAMEWORK
- How do I tell Alexa/Jovo to use only 1 render document in it's response?
- Jovo Could not resolve “vscode” error when I try to deploy
- differences from jovo v3 and v4
- Google Actions Builder stops execution when selecting a visual item from a List
- How to make the bot ignore its own name
- How do we get the Alexa Account Linking Card to display (working with Jovo)
- TypeError compiling Vue web component
- Alexa skill not asking for permission (notification) when enabling the skill via voice
- Open my app(Deep-link) from custom intent in JOVO
- User response is being cutoff and throwing an Unexpected Error. How to get the error message that happened
- AccessDeniedException: User: arn:aws:iam::xxxxxxx:root is not authorized to perform: lambda:UpdateFunctionCode
- How to extract a custom slot from a user random input in Alexa Skill
- Jovo deploy unable to find ask-clik
- What is the best practice to avoid utterance conflicts in an Alexa Skill
- How to get the actual utterance text of an Alexa skill intent using JOVO framework
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
We usually recommend using states for things like this. For example, you could add a state
PlayConfirmationStateto your question withfollowUpStateand then in this state listen for theAMAZON.YesIntent.This is how it could look like in your
app.js:For more information, take a look at the following resources: