CalendarService myService = new CalendarService("exampleCo-
exampleApp-1.0");
// myService.setUserCredentials("[EMAIL PROTECTED]",
"password");
URL feedUrl = new URL("http://www.google.com/calendar/feeds/
[EMAIL PROTECTED]/
private-33aeaade030a62b5594861bc611389e8/basic");
CalendarFeed resultFeed = myService.getFeed(feedUrl,
CalendarFeed.class);
System.out.println("Your calendars:");
System.out.println();
for (int i = 0; i < resultFeed.getEntries().size(); i++) {
CalendarEntry entry = resultFeed.getEntries().get(i);
System.out.println("\t" + entry.getTitle().getPlainText());
after I run this codes,result is list of event in the calendar not
calendar name, I don't know why?
--~--~---------~--~----~------------~-------~--~----~
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://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---