3 messages in com.googlegroups.google-calendar-help-dataapiRe: How to get Event by ID
FromSent OnAttachments
alek...@gmail.com23 Nov 2007 16:23 
Austin (Google)24 Nov 2007 12:38 
Prometheus27 Dec 2007 14:01 
Subject:Re: How to get Event by ID
From:Austin (Google) (api.@google.com)
Date:11/24/2007 12:38:21 PM
List:com.googlegroups.google-calendar-help-dataapi

Hi,

You are using the edit URL which is used when you are updating an entry to the GData server. To retrieve event entries, you need to use the full feed URL, which is -

http://www.google.com/calendar/feeds/default/private/full

For more detailed information regarding the different feeds that are used for the Calendar GData protocol, please consult this page -

http://code.google.com/apis/calendar/developers_guide_protocol.html

Hope that helps, Austin

On Nov 23, 4:24 pm, "alek@gmail.com" <alek@gmail.com> wrote:

Hi, Can somebody explain my why when I execute getFeed with direct link to my event i get zero-entries feed? Or should I do this in another way?

CalendarEventFeed calendarEventFeed = null; try { calendarEventFeed = myService.getFeed(editUrl, CalendarEventFeed.class); } catch (IOException e) { e.printStackTrace(); } catch (ServiceException e) { e.printStackTrace(); } }