Reputation: 5000
I would like to use a Google Spreadsheet as a simple database.
Can I query for specific cells using Miso Dataset or another JavaScript library? I have seen Tabletop.js but I can't get the query part to work. (It fetches the full sheet or nothing ...)
Upvotes: 0
Views: 545
Reputation: 3442
You can use the standard API to get certain cells: Google Spreadsheet API - Working with Cell-based feeds. Make sure to click the "Protocol" tab for the Javascript version.
Upvotes: 0
Reputation: 165
I know this man created js library for google spreadsheet here: https://github.com/mikeymckay/google-spreadsheet-javascript
Upvotes: 1
Reputation: 3700
CSV:
if you can make the spreadsheet public, this will work:
If login is required, I think there is a way to do web based OAuth, but never used it.
Upvotes: 0