I am trying to work the google calendar system into the cms I am building but when I properly connect and run the getCalendarListFeed I do not get the calendar titles as expected. I get something like the following:
[email protected]'s Calendar List (Event Feed: http://www.google.com/calendar/feeds/default) I have four calendars in my account and so I get the above 4 times. The four calendars are: [email protected] Personal Work and the fourth is a calendar created by my boss that is added as a friend's calendar (we will title it [email protected]). So I should see something like the following should I? [email protected] Personal Work [email protected] The code I am running (post authentication) is as follows: $gdataCal = new Zend_Gdata_Calendar($client); $calFeed = $gdataCal->getCalendarListFeed(); echo "<ul>"; foreach ($calFeed as $calendar) { echo "<li>" . $calendar->title . " (Event Feed: " . $calendar->id . ")</li>"; } echo "</ul>"; Is there something I am missing? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
