-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No intent gets called - "App Launch" does work #333
Comments
Hi @JustMeDaFaq, |
Yeah, certificate gets called. Writing testintent works, it triggers the 'you launched the app" stuff correctly. (alexaApp.launch) Just not when using alexaApp.intent :) |
If you are using the test simulator, can you take a look at the request it outputs in the Skill I/O tab? |
ask testintent to tomato say me hello world => Works. How would i create a skill that just gets called by "tomato say me hello world " ? |
You can read more about it at Invoking a Skill with a Specific Request , but I'm afraid the closest you will get is I'm pretty sure the usage of "connecting words" is there so Alexa could distinguish between different skills and route the request to the right one. If you want to elaborate on your use-case, we might be able to find the right utterance(s). |
Good news! as Alexa's name-free interactions and skill discovery is in public beta, #378 will soon be merged and you will be able to resolve the issue you were having. There's another issue (#367) with more links to developer documentation if you want to take a look. |
I am facing the same issue when using Alexa simulator. I think nothing is wrong with your code.I will check on real Alexa device just to make sure that the problem is only with Alexa simulator. Edit:I tried on alexa device but only App Launch is working.Intent calls are not delivered to webhook. |
I have same problem, only app launch is working. |
I am able to resolve this issue. The problem is with maintaining the session.When launch request fires, You need to keep session alive. Below link explains how it works: |
now it works! Thank you |
Hi,
when using this interaction model:
calling "testintent" in amazons test console/alexa simulator correctly response with "You launched the app" (also console logs it), tho when then trying to invoke an intent by calling:
"tomato say me hello world" or "testintent tomato say me hello world", it seems that the endpoint does not get loaded/called actually. So, launching app works but intents doesnt, what am i doing wrong?
Using following nodejs code:
Does someone may know, what im doing wrong?
The text was updated successfully, but these errors were encountered: