noprotocol / google-spreadsheet
There is no license information available for the latest version (0.1) of this package.
0.1
2014-04-24 10:07 UTC
Requires
This package is auto-updated.
Last update: 2024-10-17 21:42:42 UTC
README
PHP client for accessing the google drive spreadsheet api. (Because the google/apiclient is missing a Google_Service_Spreadsheet component.)
Installation
composer require noprotocol/google-spreadsheet
Usage example
$client = new Google_Client();
$client->setScopes('https://spreadsheets.google.com/feeds'); // when using ouath, ask for permissions
// other client setup code ...
$service = new SpreadsheetService($client);
$file = $service->getFile($id);
foreach ($file['pages'] as $pageId) {
$page = $service->getPage($id, $pageId, array('parseHeaders' => true));
foreach ($page['rows'] as $row) {
// do stuff...
}
};