Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Calendar API Library (PHP) - Where is the documentation? [closed]

I have been looking for documentation of the Google Calendar API functions, methods, etc. from the PHP Google Client Library, but can't for the life of me find the damn thing. Does anyone know where this lives? I went in the Groups, but there is a 2 month old question for the same thing:

https://groups.google.com/forum/?fromgroups=#!topic/google-api-php-client/pP-E1noaqsI

Any ideas here?

like image 227
user1917497 Avatar asked Dec 20 '12 02:12

user1917497


2 Answers

Overview:

https://developers.google.com/google-apps/calendar/

PHP Sample Downloads:

http://code.google.com/p/google-api-php-client/wiki/Samples#Calendar_API

Methods:

https://developers.google.com/google-apps/calendar/v3/reference/calendars

like image 69
Samuel Cook Avatar answered Nov 09 '22 20:11

Samuel Cook


You'll want to look at the reference guide for the REST API: https://developers.google.com/google-apps/calendar/v3/reference/

Each API method has a PHP code sample. For example, if you wanted to update the CalendarList you would visit: https://developers.google.com/google-apps/calendar/v3/reference/calendarList/update

like image 1
Chirag Shah Avatar answered Nov 09 '22 19:11

Chirag Shah