up vote 3 down vote favorite
2
share [g+] share [fb]

I have an object of CalendarEntry

I know that http://www.google.com/calendar/feeds/example@gmail.com/allcalendars/full is the feed url of all calendars

but how I can get this feed url from CalendarEntry instance?

Because I wanna post a new entry in a specified calendar and I need this url.

Thanks!

link|improve this question

40% accept rate
Could you post your code? – systempuntoout Apr 1 '10 at 15:26
did you figure this out? – Nick Siderakis Oct 15 '11 at 2:01
feedback

1 Answer

I suggest you to specify that URL in your code like the following snippet:

CalendarService myService = new CalendarService("CalendarService");
myService.setUserCredentials("example@gmail.com", "yourPassword");
URL feedUrl = new URL("http://www.google.com/calendar/feeds/default/allcalendars/full");
CalendarFeed resultFeed = myService.getFeed(feedUrl, CalendarFeed.class);
System.out.println("Your calendars:");
for (int i = 0; i < resultFeed.getEntries().size(); i++) {
  CalendarEntry entry = resultFeed.getEntries().get(i);
  System.out.println("\t" + entry.getTitle().getPlainText());
}

CalendarEntry instances will store every calendars (primary, secondary,imported calendars) retrieved by the specified URL.

link|improve this answer
But how do I get the feed URL for the particular CalendarEntry instance? pccCalendar.getEditLink().getHref() doesn't work. – Dmitri Pisarenko Jul 3 '11 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.