E. Navin
E. Navin

Reputation: 11

How to control webpage with Alexa skill

I want to change a website page image or background image with an Alexa voice skill. My current thinking is a meteor website since it dynamically refreshes the client web page and store the different image URLs in a MongoDB. How do I handle the http request to the meteor webpage so that it will change the image to be displayed? I have setup and tested general Alexa skills and also setup a simple meteor website (those were the easy parts) on AWS.

Upvotes: 1

Views: 593

Answers (1)

Steve Tingiris
Steve Tingiris

Reputation: 321

I'd setup a skill service using AWS Lambda and have the Lambda function make an HTTP request to an API endpoint on the meteor website that made the change. It would be fairly simple to setup. The hard part might be getting the user experience right if there are a lot of possible changes that could be made.

Upvotes: 1

Related Questions