I want to set up a system for reading/writing to Google Docs (specifically Spreadsheets) from Blockland. This could be useful for visitor logs, quick rule changes, data storage for an RPG, or pretty much anything that needs a database. I should only need two functions:
getGDocCell(docID, col, row) and
setGDocCell(docID, col, row, val); where docID is that random letters part of the doc link, col/row are the column/row of a cell (what else?), and val is the value to set the cell to. I could add doc creation/deletion, login, styling, etc. functions later, but this is what I'm focusing on right now.
The problem is I can't find any sort of web API for this. What I
can find is
some .NET/Java thing, which I'm assuming is useless for TorqueScript. So - does anyone know of some sort of Google Docs web API or another way to do this that I haven't considered?