[Httplib2-discuss] 400 error when re-fetching certain pages
Status: Beta
Brought to you by:
jcgregorio
From: Ross M K. <ros...@gm...> - 2007-05-26 18:20:13
|
If I run the program below twice, the first time it succeeds (200), and the second time it fails (400). Is the issue httplib2, or Meetup's web server? (it always succeeds if caching is off) -------------- import httplib2 client=httplib2.Http('.testcache') href="http://blog.meetup.com/99/calendar/ical/The+Washington+Blogger+Meetup/" response, doc= client.request(href, 'GET') print response |