I have an existing Google Spreadsheet with a certain ID (seen in the URL).
I would like to add rows to it from a PHP script with simple code.
I would prefer not having to add huge libraries to do this. Is it possible to do this using just CURL or some small library?
What is the simplest way to do this?
Options:
1) Use google apps script (java script) to create a web app that inserts the row. Then to insert the row, use the url. You can pass parameters to the app in the url.
2) there is Zend, see: Writing to Google Docs Spreadsheet using PHP I think it has an append row function, rather than an insert row, but I might be wrong. (I would like to know if you find an insert row). It uses (gdata) spreadsheet API (there is an open issue for insert row, at the moment you can only append rows)
Note, for inserting a row, I suspect option 1 is less work than option 2.