Alex Persian
Alex Persian

Reputation: 94

Accessing and manipulating Google Sheets in iOS

I'm attempting to use Google Sheets as a back-end for an iOS app. The spreadsheets in question are private, so will require Oauth 2.0 for interactions.

So far I have come across three different ways to access spreadsheet data, but I'm not sure which one is the right one.

Has anyone here found success with any of these options, and if so how?

Upvotes: 1

Views: 433

Answers (1)

Mogsdad
Mogsdad

Reputation: 45720

Rather than any of the options you've listed, you should be looking at the Apps Script Execution API, which is a supported component of the Google Apps Script environment. It was introduced just over a month ago, in response to the growing demand for ubiquitous access to Google Apps.

As for the "how" - the Quick Start should get you started.

Upvotes: 1

Related Questions