I was getting several errors "Moved Temporarily" when accessing my
calendars. I tracked down the problem to an issue in
gdata-2.0.14/src/gdata/service.py
The following command (3 times) was a wrong pattern:
m = re.compile('[\?\&]gsessionid=(\w*\-)').search(location)
It should be
m = re.compile('[\?\&]gsessionid=([\w\-]*)').search(location)
Hope this helps.
Joao
--
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