Nathan Hurst
Nathan Hurst

Reputation: 1750

Current Android Google Spreadsheet API Example for writing

I'm looking for an example of writing a Google Spreadsheet and adding rows to it from Android. All the examples I've found so far are either out of date, only include authentication, or only listing documents/spreadsheets (without including any writes). Do you know of any examples of creating a spreadsheet and adding rows to it?

Upvotes: 6

Views: 6464

Answers (3)

Lorenzo Sciuto
Lorenzo Sciuto

Reputation: 1685

Give a look at this link:

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

and to this question:

Android - Google Spreadsheet Api

Upvotes: 0

Nels Beckman
Nels Beckman

Reputation: 20558

The spreadsheets stuff seems to be changing all the time, and it's hard to tell whether or not it's supported and to what degree. But I am currently following up the simplest leads that seem promising. That includes:

  1. Authenticating the user with oAuth2.0 from Google Play Services
  2. Following the latest instructions in the API v3.0 Documentation

Upvotes: 1

Ralph Mueller
Ralph Mueller

Reputation: 174

Here is an api wrapper for Android for the Google spreadsheet api: [email protected]:ralph240574/spreadsheet-api.git

And a working example: [email protected]:ralph240574/spreadsheet-api-android-example.git

And here is an app that uses the api: https://play.google.com/store/apps/details?id=com.iubiquity.fc

Upvotes: 1

Related Questions