Searching around the net for almost 1 day I still did not see any simple good example of an app that implements the Google Calendar API. Or even simple explanation on how to implement the API is still not available. Can someone help me please? I'm a newbie to iOS. I need to learn how to create an event using the Google Calendar API through my app in iOS. I need a sample simple code...
Asked
Active
Viewed 9,697 times
-1
-
possible duplicate of [Is any google calendar api for iphone sdk?](http://stackoverflow.com/questions/6840231/is-any-google-calendar-api-for-iphone-sdk) – Brad Larson Feb 09 '12 at 17:48
-
@BradLarson have you done the google calendar API? And you get any other sample code. Am waiting for your reply. – Gopinath Manickam Feb 09 '13 at 10:58
-
There really aren't many simple, thorough examples of this. – d2burke Jan 16 '14 at 02:06
-
you can do from here : https://developers.google.com/google-apps/calendar/quickstart/ios – Piyush Sep 06 '16 at 06:44
2 Answers
3
Here are some very useful links when trying to figure out the google calendar api. http://code.google.com/p/gdata-objectivec-client/wiki/GDataObjCIntroduction and mainly http://code.google.com/p/iphone-gcal/. I just downloaded the source code from the second link and worked from there. It was great!

user1135469
- 1,020
- 11
- 22
1
The Google Calendar API, like most Google API's, provides a straightforward REST interface. Instead of focussing first on how to create calendar events, learn how to interact with a RESTful web service. Once you know how to do that, you only have to learn what calls to make to accomplish your goal, and that's already well documented.

Caleb
- 124,013
- 19
- 183
- 272