0

I want to retrieving Google Tasks for this first i try to get it from http://code.google.com/p/gdata-objectivec-client from gdata i use calendar API but it gives me only calendar events.

Then I try to get it from http://code.google.com/apis/tasks but this API link only give me methods name it cannot give Google Task API.

Is there any API for getting Google Tasks, please provide me link of that.

Thanks in advance...

Apekshit
  • 767
  • 2
  • 13
  • 27

2 Answers2

2

Google is moving from older XML APIs ("Google Data APIs") to newer JSON APIs.

Google Calendar is still available as an XML API, and can be accessed with the older library, http://code.google.com/p/gdata-objectivec-client/

Google Tasks is available as a JSON API, and can be accessed with the newer library, http://code.google.com/p/google-api-objectivec-client/

The libraries share some common components for networking and authorization, and are compatible.

grobbins
  • 1,564
  • 1
  • 8
  • 6
0

There is a tasks example for the google-api-objectivec-client at:

http://code.google.com/p/google-api-objectivec-client/source/browse/#svn%2Ftrunk%2FExamples%2FTasksSample

Did not use it myself, only know of its existence...

Olaf
  • 3,042
  • 1
  • 16
  • 26