I'm trying to retrieve a Google Calendar event using the Zend Gdata library.
When I create an event I store in my database the event URL returned by the insertevent method. Initially I thought I could just use this URL to then delete the event later on. After a little research I realized that you actually need a special URL which is the event URL with an extra string of numbers appended to it. I looked at the various event retrieval methods in the Zend Gdata library but none of them seem to allow you to just pass the event URL in. They all seem to want a text or date range query. How would I go about retrieving the delete URL for an event whose URL I already know?