We recently added a connector to Google Calendar API and have found it less reliable than the other Google APIs.
If we do a calendar list (https://www.google.com/calendar/feeds/ default/allcalendars/full?alt=jsonc) we occasionally get a 401 unauthorized error. I added retries, and sometimes it works on the second try, sometimes third or more. I even made it sleep a second before trying again and we still get the errors intermittently. Here is the connector: https://www.itduzzit.com/duzz/google-calendar-create-event Also, when creating an event. We sometimes get an invalid JSON error and sometimes it works. Here is the sample JSON that works sometimes: { "data": { "title": "Test", "details": "Test", "transparency": "opaque", "status": "confirmed", "location": "", "when": [ { "start": "2011-11-16T06:00:00.000Z", "end": "2011-11-16T06:15:00.000Z" } ] } } Here is our connector: https://www.itduzzit.com/duzz/google-calendar-create-event Anybody experience the same or have suggestions? Steve. -- 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://code.google.com/apis/calendar/community/forum.html
