Daddy
Daddy

Reputation: 9035

GData Google API Objective-C client help for iPhone

There seems to be no available documentation for the Objective-C client for the Google Data API. Google's API help webpage only has options for .NET, Java, Python, and the HTTP Protocol. I want to access data from a spreadsheet on my Google Docs account, and then add new data.

I have added the correct source codes to my project as outlined in the GData Wiki, and am now completely lost. There are a ton of classes to sort through for Spreadsheets, and there are very few comments and I can't really tell by method names what does what.

If possible, can someone post a couple snippets of code to first access the available documents, then pick one of the choices, and then add information to a cell (like A1)?

Thank you in advance for your consideration!

Upvotes: 1

Views: 2609

Answers (3)

Rod Gammon
Rod Gammon

Reputation: 41

http://code.google.com/p/gdata-objectivec-client/wiki/GDataObjCIntroduction

A year or so later, a page for just this: Google Data APIs Objective-C Client Library

Upvotes: 1

grobbins
grobbins

Reputation: 1564

Generally, to create a new entry, you'll use an http POST to the feed's postLink. The Obj-C library service class provides POST operations as the method fetchEntryByInsertingEntry:

I believe creating a new spreadsheet still requires uploading a new document, as mentioned in the docs. You could create a simple CSV text file and upload that as a spreadsheet.

Note that there is a discussion group for users of the library.

Upvotes: 0

grobbins
grobbins

Reputation: 1564

Did you look at the spreadsheet sample?

Upvotes: 2

Related Questions