Я предлагаю вам указать, что URL-адрес в коде, как в следующем фрагменте:
CalendarService myService = new CalendarService("CalendarService");
myService.setUserCredentials("[email protected]", "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 будет хранить каждые календари (первичные, вторичные, импортированные календари), извлекаемые по указанному URL.
Не могли бы вы высказать свой код? – systempuntoout
Вы поняли это? –