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.
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
@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
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
@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
1 Answers
1
votes
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)
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
PlanMyTripwhen the keywordmytripis identified. - Valerian Pereira