Dear all,
In the examples on
http://code.google.com/apis/calendar/developers_guide_php.html
all the events that are retrieved and created are in the default
calendar. See the following example:
function outputCalendarByFullTextQuery($client,
$fullTextQuery='tennis')
{
$gdataCal = new Zend_Gdata_Calendar($client);
$query = $gdataCal->newEventQuery();
$query->setUser('default');
$query->setVisibility('private');
$query->setProjection('full');
$query->setQuery($fullTextQuery);
$eventFeed = $gdataCal->getCalendarEventFeed($query);
...
Is it possible to add a parameter tot $query to look in a specific
calendar?
Thanks,
Gijs
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---