Mohammad Rabi
Mohammad Rabi

Reputation: 1412

Sync using Google calendar APIs Objective-C

I have iOS calendar app and i need to sync it with google calendar.

I need sync as the following steps: 1-Full sync with google calendar one time only. 2-Incremental sync with google every 1 min.

I read google calendar documentation and google support incremental sync by pass "syncToken" parameter.

The problem: "syncToken" does NOT available on objective-c library.

Anybody have same issue or ideas what's happening?

Upvotes: 0

Views: 610

Answers (1)

Eric Koleda
Eric Koleda

Reputation: 12673

The GTLQueryCalendar class makes syncToken available as a dynamic property:

https://code.google.com/p/google-api-objectivec-client/source/browse/trunk/Source/Services/Calendar/Generated/GTLQueryCalendar.m#49

Upvotes: 1

Related Questions