Hello!
I want to the the events from multiple / a specified calendar.
The current code is
List theNewItems = new LinkedList();
URL feedUrl = new URL("http://www.google.com/calendar/feeds/default/
private/full");
CalendarQuery myQuery = new CalendarQuery(feedUrl);
myQuery.setUpdatedMin(DateTime.parseDateTime(CUtil
.createTimeString(aStart)));
myQuery.setUpdatedMax(DateTime.parseDateTime(CUtil
.createTimeString(aEnd)));
Feed resultFeed = (Feed) myService.query(myQuery, Feed.class);
resultFeed.getEntries()
which gets all the entrys of the first calendar in my account.
What I now want is to get the entrys of another calendar or the entrys
of all calendars I have. I have not yet found a way but there must
exist one ;-)
I have tried to get the calendar feeds and get the entries from there,
but I go stuck.
Thanks,
derbear
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---