2 messages in com.googlegroups.google-calendar-help-dataapiRe: Delete Event by URL using PHP
FromSent OnAttachments
open...@gmail.com20 Dec 2007 16:09 
Austin (Google)21 Dec 2007 11:00 
Subject:Re: Delete Event by URL using PHP
From:Austin (Google) (api.@google.com)
Date:12/21/2007 11:00:54 AM
List:com.googlegroups.google-calendar-help-dataapi

Hi,

Yes I was experiencing similar issue yesterday for a bit. It seems like this is not happening anymore. Let me know if you still running into this issue, Thanks!

Austin

On Dec 20, 2007 4:09 PM, open@gmail.com < open@gmail.com> wrote:

I've the following code:

function deleteEventByUrl ($client, $url) { $gdataCal = new Zend_Gdata_Calendar($client); $gdataCal->delete($url); }

deleteEventByUrl($client, 'http://www.google.com/calendar/feeds/ default/private/full/b9lf6c391ajjgaraf3p2vuqet0'<http://www.google.com/calendar/feeds/default/private/full/b9lf6c391ajjgaraf3p2vuqet0%27> );

The client is correcty logged previously, and the url is a valid url feed (returned by the function createEvent).

The problem is... it doesn't delete the event!

I've read that I need to use: the function getLink(...) but I don't know how.

Can you help me?