Simple Hello World Skill built using alexa-skills-kit-sdk-for-nodejs. This skill demonstrates the use of Express server for handling Alexa requests.
Also see Alexia - an alternative framework for building Alexa skills in Node.js
npm install
npm start
- send
HelloWorldIntent
request (see below) tolocalhost:3000
using f.e. Postman
{
"session": {
"attributes": {},
"sessionId": "1234",
"application": {
"applicationId": "amzn1.echo-sdk-ams.app.123"
},
"user": {
"userId": "test_user"
},
"new": false
},
"request": {
"type": "IntentRequest",
"requestId": "request_id_123",
"timestamp": 1449829632387,
"intent": {
"name": "HelloWorldIntent",
"slots": {}
}
}
}