Skip to content

Files

Latest commit

author
Rob McCauley
May 2, 2017
fb1d83e · May 2, 2017

History

History
This branch is 119 commits ahead of jaywalker76/alexa-cookbook:master.

external-calls

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 2, 2017
Apr 22, 2017
Mar 16, 2017
Mar 7, 2017

README.md

Alexa Skill Building Cookbook

External Calls


Intro

Alexa skill developers can take advantage of external APIs and web services available on the public Internet. Skill code could perform an external search based on the value of a spoken slot, call another application to update a record, or control a robot or device.

We can design functions to simplify the process of sending and receiving data from a service. The service function will hide all the details of the function call and allow us to simply send arguments and receive data. The examples assume your skill code is written as a Lambda Node.js function.

Skill code can use the built-in HTTPS module to make service POST and GET calls. See the HTTPS reference docs.

Table of Contents


Back to the Home Page