0

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 ...)

dani
  • 4,880
  • 8
  • 55
  • 95

3 Answers3

1

I know this man created js library for google spreadsheet here: https://github.com/mikeymckay/google-spreadsheet-javascript

Alerkesi
  • 165
  • 8
0

CSV:

if you can make the spreadsheet public, this will work:

jquery google spreadsheet csv

If login is required, I think there is a way to do web based OAuth, but never used it.

Community
  • 1
  • 1
eddyparkinson
  • 3,680
  • 4
  • 26
  • 52
0

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.

Josh
  • 3,385
  • 5
  • 23
  • 45