Reputation: 87
I have already built amazon alexa skills using aws lambda, now I want to build a skill using https endpoint. I don't have a clear vision how to proceed further. Can anyone guide / give me steps to proceed.
Upvotes: 4
Views: 4489
Reputation: 343
Please flip through this detailed description of a project with similar requirements. This documentation includes each steps you'll need to take.
In short, you need to set up Amazon API Gateway with your Alexa Skill, which will hook up your lambda function with a publicly addressable API.
If the other endpoint only accepts and sends HTTP instead of HTTPS requests, you will further need Amazon CloudFront as a proxy relayer.
Upvotes: 0
Reputation: 68715
You have mainly two choices to start as mentioned here
https://developer.amazon.com/docs/custom-skills/request-and-response-json-reference.html
https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs
Upvotes: 2