Glogo / alexa-skill-sample-nodejs-express

Simple Hello World Skill built using alexa-skills-kit-sdk-for-nodejs. This skill demonstrates the use of Express server for handling Alexa requests.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alexa Skills Kit SDK for Node.js with Express

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

Quick start

  • npm install
  • npm start
  • send HelloWorldIntent request (see below) to localhost: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": {}
    }
  }
}

About

Simple Hello World Skill built using alexa-skills-kit-sdk-for-nodejs. This skill demonstrates the use of Express server for handling Alexa requests.

License:Apache License 2.0


Languages

Language:JavaScript 100.0%