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

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');

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.