The product I am working on runs on top of Google App Engine. It contains code similar to this:
result = urlfetch.fetch(url, **parms)
log('%s' %result.final_url)
This always returns None. In the documentation it says it will return the correct URL. But this seems to be a problem. I cannot use the given url since there is a lot of 302 happening in between.
Anybody knows how to solve the same?