alexa-js / alexa-app-example

An example Alexa Skill project using the alexa-app module with Express.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The remote endpoint could not be called, or the response it returned was invalid.

vipulrawat opened this issue · comments

I deployed in heroku using the deployed button in your README file. The /test is showing in the html page with all the things but when I set my HTTPS endpoint in the configuration of my skill I am getting this error.
I don't know what endpoint to set. Please Help.
## The remote endpoint could not be called, or the response it returned was invalid.

@vipulrawat The remote endpoint should be at https://<app-name>.herokuapp.com/test, where <app-name> is the name that you specify on heroku. The path /test is specified by this line:

var alexaApp = new alexa.app("test");

Changing "test" will thus change the path endpoint.

There's some more documentation about configuring express to work with alexa-app here. If you have any other questions, feel free to ask.