alexa-js / alexa-app-server

An Alexa app server for alexa-app.
MIT License
401 stars 116 forks source link

Receiving Interaction Model JSON in new Dev Console #110

Closed paulschuetz closed 4 years ago

paulschuetz commented 6 years ago

Currently if you locally test your alexa skill it only shows you the intent schema and the list of sample utterances. Since the new Alexa dev console uses an updated interaction model scheme with a new json structure it would be neat to have the opportunity to also get your skill interaction model in the new format somehow.

benedekh commented 6 years ago

possible duplicate of #109 ?

paulschuetz commented 6 years ago

That seems to be my question essentially. But the answer to this issue relates to alexa-js/alexa-app/pull/268 which is in the alexa-app repo. How do you get the new format when you are working with alexa-app-server. I have seen that you can you can use: GET /your/app/endpoint?schema GET /your/app/endpoint?utterances to receive intent schema or a list of sample utterances respectively, Is there an option like: GET /your/app/endpoint?schema=skillBuilder to get this in the new schema?