Hello Dave,

Are you looking for the Event "self" link? If this is the case, you can 
retrieve it after getting the event feeds from the Calendar API.
You first need to send a query to the targeted calendar (as you mentioned 
earlier) which will return a list of CalendarEventEntry objects.

http://code.google.com/apis/calendar/data/2.0/developers_guide_java.html#RetrievingWithoutQuery

[CODE]
   
for (CalendarEventEntry entry : feed.getEntries()) {

  String URL = entry.getSelfLink().getHref();

}
[/CODE]

However, if you are just looking for the event details, you should have 
everything you are looking for in the CalendarEventEntry object.

I hope this helped!

Best,
Alain

-- 
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/calendar/community/forum.html

Reply via email to