Reputation: 353
How to query a database using ASK ? I want something like "Hey, Alexa get me the ID numbers of cars whose color is Red and type is Convertible" It should hit my database and get all the corresponding records. Is talking to database using Alexa possible ? If yes, than how ?
Upvotes: 0
Views: 1407
Reputation: 2582
First of all you should understand that the skill consist of 2 parts.
The "amazon alexa skill service" which you configure with your intents and slots via the alexa developer console
your HTTP REST backend which consist of all the logic and responds to the users. Here you can also call external services (websites, databases) whatever you want.
Best would be to read in general about custom skills and afterwards dig deeper with the links above.
Upvotes: 1