Hi,
I have been using the following API to add an event to my Google
Calendar.
CalendarService myService = new CalendarService("myCalendar");
URL postUrl = new URL("http://www.google.com/calendar/feeds/"+ user +
"/private/full");
CalendarEventEntry myEntry = new CalendarEventEntry();
...
CalendarEventEntry insertedEntry = myService.insert(postUrl, myEntry);
Starting yesterday the Calendar UI fails to show the events I write. I
am sure the data is written as I can get back the data I wrote using
CalendarService myService = new CalendarService("getfeedsexample");
CalendarEventFeed resultFeed = (CalendarEventFeed) myService.query
(myQuery, CalendarEventFeed.class);
Has anyone else seen this? Did Google change something the API over
the last few days? Any help would be much appreciated. Thank you
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---