How to use the Google SpreadSheets API to feed data to an application?

curl, google-sheets, php

Solution

Google is your friend! ;)

- http://code.google.com/apis/gdata/articles/php_client_lib.html

- http://sim.plified.com/2008/09/14/accessing-google-spreadsheet-with-php/

- http://farinspace.com/2009/05/saving-form-data-to-google-spreadsheets/

Problem

I've read through the Google Spreadsheets API PHP documentation. All examples are using Zend, which I cannot use. See this page: http://code.google.com/apis/spreadsheets/docs/1.0/developers_guide_php.html Does anybody know a simple example of the following: How can I use PHP w/ curl (or whatever) and the Google Spreadsheets API to get the data from a Google Spreadsheets Doc? It's my understanding that the data will be delivered in XML format. From there, I'll use PHP to manipulate it.

Original source

Related problems