Hi,
I am using the examples from google to create new google calendar.
CalendarService myService = new CalendarService("exampleCo-
exampleApp-1");
myService.setUserCredentials("[email protected]", "mypassword");
CalendarEntry calendar = new CalendarEntry();
calendar.Title.Text = "Little League Schedule";
calendar.Summary.Text = "This calendar contains the practice schedule
and game times.";
calendar.TimeZone = "America/Los_Angeles";
calendar.Hidden = false;
calendar.Color = "#2952A3";
calendar.Location = new Where("", "", "Oakland");
Uri postUri = new Uri("http://www.google.com/calendar/feeds/default/
owncalendars/full");
CalendarEntry createdCalendar = (CalendarEntry) myService.Insert
(postUri, calendar);
>From time to time I am getting server errors like:
Execution of request failed:
http://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=esQG1hu8EjKkO5X9YoX9ug
or HTTP500 Internal server error while trying to browse calendars feed
http://www.google.com/calendar/feeds/default/allcalendars/full
Any help will be appreciated
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---