Thank You Ray, i am getting closer with my problem. I modified the
Zend functions to now send the URL.

What do I use as the calendar URL. I have tried

    if ($calendar->title->text == $ourCal)
        {
                $ourCalUrl = explode('$calendar->id;
        }
and
    if ($calendar->title->text == $ourCal)
        {
                $ourCalUrl = explode('/',$calendar->id);
                $ourCalUrl = 'http://www.google.com/calendar/feeds/'.
$ourCalUrl[6] . '/private/full';
        }

but both trow errors.

Any help will be appreciated.

thank you
stephen

On Jun 2, 12:58 pm, Ray Baxter <[EMAIL PROTECTED]> wrote:
> On Jun 1, 2008, at 9:50 PM, Stephen wrote:
>
>
>
> > I am using Zend's PHP gdata framework. I am able to create calendar
> > events which is great, but i cannot seem to figure out create a
> > calendar event in another calendar. I already have the calendar URL
> > and looking at the documentation i have to change the post URL. If
> > this is correct i just need to be able to do it on with the Zend
> > Framework
>
> To insert an event in a calendar other than the default when using
> Zend framework, you need to pass the uri of that other calendar to
> insertEvent:
>
>   $newEvent = $gdataCal->insertEvent($event, $uri);
>
> http://framework.zend.com/apidoc/core/Zend_Gdata/Zend_Gdata_Calendar....
>
> Ray
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to