Get a list of calendars I want to get a list of google calendars for a google account. I am already authenticated and using the PHP library…. how? https://developers.google.com/google-apps/calendar/v3/reference/calendarList/list public static function get_calendar_lists() { $client = Inbound_Google_Calendar_Connect::get_client(); $service = new Google_Service_Calendar($client); $calendarList = $service->calendarList->listCalendarList(); print_r($calendarList);exit; while(true) { foreach ($calendarList->getItems() as $calendarListEntry) { echo $calendarListEntry->getSummary(); } … Continue reading Notes on working with Google Calendar API
↧