2017 © Pedro Peláez
 

library google-spreadsheet-api

Google Spreadsheets API 3.0

image

wunderdata/google-spreadsheet-api

Google Spreadsheets API 3.0

  • Sunday, December 22, 2013
  • by MikeRoetgers
  • Repository
  • 1 Watchers
  • 0 Stars
  • 632 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

google-spreadsheet-api

Implementation of the Google Spreadsheet API 3.0, (*1)

Build Status, (*2)

Status

This is still a WIP. Keep in mind that everything can change until 1.0.0 is reached. Currently only reading data is implemented., (*3)

Authorization

The lib is only tested with the OAuth 2.0 authorization method., (*4)

It is your responsibility to make sure the access token is valid. The client does not refresh the token automatically., (*5)

Basic Usage

<?php

// Instantiate the Google client.
// You need a valid access key and the Buzz browser for HTTP requests.
$client = new \Wunderdata\Google\Client($accessKey, $buzz);

// Get a list of all spreadsheets
$spreadsheets = $client->loadSpreadsheets();

// Load all worksheets from the first spreadsheet in the list
$worksheets = $client->loadWorksheets($spreadsheets[0]);

// Load the cell feed for the first worksheet in the list
$cellFeed = $client->loadCellFeed($worksheets[0]);

// Get content from cell B3
$b3 = $cellFeed->findCell('B3');

Check out the official documentation regarding authentication., (*6)

The Versions

22/12 2013

dev-master

9999999-dev https://github.com/MikeRoetgers/google-spreadsheet-api

Google Spreadsheets API 3.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Mike Roetgers

api google spreadsheet docs

10/09 2013

0.1.0

0.1.0.0 https://github.com/MikeRoetgers/google-spreadsheet-api

Google Spreadsheets API 3.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Mike Roetgers

api google spreadsheet docs