I have created custom skills and https endpoints using PHP. I have tested skills on simulator it was working. I am able to see my skills on alexa android app and i have enabled it. But not getting valid response.
Asked
Active
Viewed 244 times
3
-
What is the response that you are expecting? and what is the response that you receiving?Some code snippets and steps to replicate would be helpful – Valerian Pereira Mar 18 '19 at 06:56
-
@ValerianPereira I just created sample skill with invocation name " mytrip ". If i say "Alexa, open mytrip", In test simulator i am getting " Hi, Welcome to PlanMyTrip. How Can I help you to make your trip plan? ". But in from alexa app I am getting " Sorry, i am not sure " message – Manjunath Mar 18 '19 at 07:03
-
Could you rename your invocation name temporarily and use your skill? Looks like Alexa resolves to `PlanMyTrip` when the keyword `mytrip` is identified. – Valerian Pereira Mar 18 '19 at 07:08
-
I reffered this blog : http://blog.gaiterjones.com/amazon-alexa-php-hello-world-example/ – Manjunath Mar 18 '19 at 07:12
-
@ValerianPereira Ya, i renamed my inocation name But still not getting. Is there any way to find the error what we are getting when we make request from alexa app for custom skills ? Is it possible to test custom skills in alexa app which is in developement mode ? – Manjunath Mar 18 '19 at 08:08
-
Can you check the language settings in your simulator, the android app and the skill that you built? It should be the same. – Valerian Pereira Mar 19 '19 at 03:00
-
Did you Enable the skill in the Alexa App? If it is already enabled, try disabling and enable again. – Jay A. Little Mar 19 '19 at 15:22
1 Answers
1
The Language of your Interaction Model should match to the region your lambda snippet is deployed. Default language for interaction model is English (US) For E.g Change the language to English(UK) Interaction Model - English (UK) Lamda Resource - English (UK)

Valerian Pereira
- 725
- 1
- 6
- 16
-
Yes, my region language is English(US) for both simulator and interaction model. How can i test my skills on amazon Alexa app ? – Manjunath Mar 19 '19 at 05:07
-
-
How to change alexa app language to our current region English(IN) ? – Manjunath Mar 22 '19 at 05:50