Sync using Google calendar APIs Objective-C - ios

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?

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

Related

What is the use of google tag manager for iOS app?

I am using firebase Analytics to log all the event. I m not able to understand the google tag manager , How can i use it . What google tag manager can do for iOS app.
One of the big iOS/Android projects I work on uses GTM variables for remote configuration.
For example, our menu items change based on whether it is Winter. So, we flip a boolean on GTM, and voila, within 24 hours, all our apps have the correct menu items.
We are planning to migrate this functionality to Firebase database, however, which has the benefit of instant updates.

Using EventKit to read Google Calendar ical file

I have a public Google Calendar and I'm trying to integrate it into my App. Essentially I want the Google Cal to be a UI where users can update it and it would reflect in the App.
I'm trying to figure out a way to best parse the Google Calendar. Things I'm thinking of:
Use the Google Calendar API- however is there a way to get the events in JSON format?
Using the public iCal link provided by Google Calendar- is it possible to parse this using EventKit ? If users update the Google Cal, will the iCal link also update ?
Any other suggestions would be amazing !
You can integrate google calendar as you have described into an APP here i the documentation and example projects; https://developers.google.com/google-apps/calendar/v3/reference/
I am not sure why you need the events in JSON format. I integrated the calendar API into my IOS app without putting anything in JSON format.
Yes iCal will update (on Apple products it does)

Integrating Google Drive with iOS

I'm working on app in which I need to integrate with Google Drive for my iOS App.
So I started following Quick Start. Every thing worked perfectly fine and successfully able to get list of my file with the use of query in GTLQueryDrive class. But problem is that I am getting every thing for using query so for this there is no User Interface for Google Drive (like they can show all files with logos and we can get those file and some delegate may trigger as I also noticed in android integrated project). So
Is this possible that I Google drive give some default interface for listing files with actions available, instead of just using queries.
If possible then how can Integrate or some helping tutorial link.
Looking for help. Thanks.
Is this possible that I Google drive give some default interface for listing files with actions available, instead of just using queries?
It seems what you're looking for is the Google Picker.
It's is a "File Open" dialog for the information stored in Google
servers. With Google Picker, your users can access and upload photos,
videos, maps, and documents stored in Google servers. The selection is
passed back to your web page or web application for further use. You
can read more of that in the
docs.
I have to mention though that the example used is written in Javascript.
If possible then how can Integrate or some helping tutorial link.
Try this iOS Picker demo app from Github.
For additional info about implementing Picker, watch this video from Google.

Adding custom calendar to the Google calendar using ios?

I have tried using EKCalendar. But I am not able to create calendar using EKCalendar on Gmail and Outlook. Then I have done some analysis to create google calendar using iOS, found a solution as Google Calendar API. Is there any other way to sync google calendar and creating calendar from apple calendar to google and adding custom events to google calendar from iPad? please give some solutions regarding this!
I don't know how to edit a Google calendar using IOS (and I think it's not possible, except using Safari Browser which is not practical) but to synchronize it : https://support.google.com/calendar/answer/151674?hl=en

How to Sync Google Calendar in ios application?

I am working on a iphone app, in which i have created a calendar and added events on it. but now i have to add these events on Google calendar. After a long search , i didn't found any good ways to do this. Please Help me.

Resources