#Simple AWS Lambda function for Alexa A simple AWS Lambda function that demonstrates a basic skill for the Amazon Echo using the Alexa SDK.
This shows how to create a Lambda function for handling Alexa Skill requests:
To run this example skill you need to do two things. The first is to deploy the example code in lambda, and the second is to configure the Alexa skill to use Lambda.
- Go to the AWS Console and click on the Lambda link. Note: ensure you are in us-east or you wont be able to use Alexa with Lambda.
- Click on the Create a Lambda Function or Get Started Now button.
- Skip the blueprint
- Name the Lambda Function "Encyclopedia-Of-Philosophy-Skill".
- Select the runtime as Java 8
- Go to the the samples/ directory containing pom.xml, and run 'mvn assembly:assembly -DdescriptorId=jar-with-dependencies package'. This will generate a zip file named "alexa-skills-kit-samples-1.0-jar-with-dependencies.jar" in the target directory.
- Select Code entry type as "Upload a .ZIP file" and then upload the "alexa-skills-kit-samples-1.0-jar-with-dependencies.jar" file from the build directory to Lambda
- Set the Handler as encyclopediaofphilosophy.EncyclophiaOfPhilosophySpeechletRequestStreamHandler (this refers to the Lambda RequestStreamHandler file in the zip).
- Create a basic execution role and click create.
- Leave the Advanced settings as the defaults.
- Click "Next" and review the settings then click "Create Function"
- Click the "Event Sources" tab and select "Add event source"
- Set the Event Source type as Alexa Skills kit and Enable it now. Click Submit.
- Copy the ARN from the top right to be used later in the Alexa Skill Setup.
- Go to the Alexa Console and click Add a New Skill.
- Set "Encyclopedia of Philosophy" as the skill name and "Encyclopedia of Philosophy" as the invocation name, this is what is used to activate your skill. For example you would say: "Alexa, Ask Encyclopedia of Philosophy for a quote.."
- Select the Lambda ARN for the skill Endpoint and paste the ARN copied from above. Click Next.
- Copy the Intent Schema from the included IntentSchema.json.
- Copy the Sample Utterances from the included SampleUtterances.txt. Click Next.
- Go back to the skill Information tab and copy the appId. Paste the appId into the PhilosophyEncyclopediaSpeechletRequestStreamHandler.java file for the variable supported ApplicationIds, then update the lambda source zip file with this change and upload to lambda again, this step makes sure the lambda function only serves request from authorized source.
- You are now able to start testing your sample skill! You should be able to go to the Echo webpage and see your skill enabled.
- In order to test it, try to say some of the Sample Utterances from the Examples section below.
- Your skill is now saved and once you are finished testing you can continue to publish your skill.
User: "Alexa, ask Encyclopedia of Philosophy for a quote." Alexa: "Pragmatism was a philosophical tradition that originated in the United States around 1870 ..."