简体   繁体   中英

Building Alexa inventory management skill

I would like to build an Amazon Alexa skill that can read back information on what I have in my inventory. I was thinking about creating a website, storing my inventory in a spreadsheet, and then uploading the spreadsheet to the website. Alexa would then be able be able to crawl the spreadsheet and tell me certain information based on what I ask. I already know the basics of building a skill through Amazon's develop console, but how would I incorporate Alexa going to a spreadsheet on my website? I've read about people using DynamoDB, but haven't seen anyone use a spreadsheet. Advice?

Use JSoup https://jsoup.org if you can use Java.

Jsoup helps to parse any unstructured html with easy to use methods.

I used this in my alexa skill as my backend service have not exposed an API and hence I had to crawl a web page having the results of API.

Spreadsheets when ultimately loaded in browsers becomes an HTML and JSoup is the library that helps to parse any tag, any attribute in your html.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM