If you have the selflink url : String URL = entry.getSelfLink().getHref(), you just have to query the feed for that specific entry :
cal_service.getEntry(URL, CalendarEventEntry.class, null) All is explained in the javadoc reference<http://code.google.com/intl/fr/apis/gdata/javadoc/com/google/gdata/client/GoogleService.html#getEntry%28java.net.URL,%20java.lang.Class,%20com.google.gdata.data.DateTime%29>, maybe you should review it before further coding. Also, don't miss the Java Gdata 2.0 API Developer's guide<http://code.google.com/intl/fr/apis/calendar/data/2.0/developers_guide_java.html> . -- 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
