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();
}
}