you can get a single ocurrence by his key.

http://www.google.com/calendar/feeds/USER/private-abc/full/EVENTKEY


On May 11, 8:24 am, Nate Gruff <[email protected]> wrote:
> hi,
>
> I'm trying to get all the data from single event in PHP, to make an "event
> details" page.
>
> so i have it getting all the events in the calendar...
>
> function outputCalendarByFullTextQuery($client,$startDate, $endDate)
> {
> $gdataCal = new Zend_Gdata_Calendar($client);
>   $query = $gdataCal->newEventQuery();
>   $query->setUser('[email protected]');
>   $query->setVisibility('private-abc');
>   $query->setProjection("full");
>   $query->setOrderby('starttime');
>   $query->setSortOrder('a');
>
> etc.
>
> I can get the data from xml in the form of:
>
> http://www.google.com/calendar/feeds/[email protected]/private-abc/full/
> *xyz*
>
> i'm looking to add in the part after   *$query->setProjection("full");* -
> how can i add it into the query?
>
> if it's not possible, i'll have to do it with the xml feed instead...
>
> I hope this makes sense
>
> thanks in advance :)

-- 
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://code.google.com/apis/calendar/community/forum.html

Reply via email to