user1089398
user1089398

Reputation:

Using Google Drive PHP API to read and write Google Doc tables

I'm thinking about the followin scenario:

My PHP application push some integers into a google doc table which calculates with this and saves the result of this operations at the end of the table. my php application finally reads the result and displays it on the website.

Is this possible with the Google Drive PHP API?

I found the following: http://code.google.com/p/google-api-php-client/ https://developers.google.com/drive/ https://developers.google.com/drive/examples/php#setting_up_this_sample_application

But I'm not sure if this would be possible at all? Are there any example applications or scripts in order to read and write google doc tables?

Upvotes: 0

Views: 8395

Answers (1)

Claudio Cherubino
Claudio Cherubino

Reputation: 15004

You can use the Spreadsheets API to programmatically read and write to a Google Spreadsheet:

https://developers.google.com/google-apps/spreadsheets/

Upvotes: 1

Related Questions