-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve redirect handling #157
Conversation
Thank you! |
Hi @fafhrd91, Thanks for the merge, it's a real pleasure to work with a collaborative guy ;-) BTW, if somebody could make a release of aiohttp in a near future, it should be cool. |
+1 for next bugfix release On Thu, Oct 9, 2014 at 3:24 PM, Ludovic Gasc notifications@github.com
Thanks, |
I'd like to merge PR for chunking requests first. I am planing to make On Thursday, October 9, 2014, Andrew Svetlov notifications@github.com
|
Hi,
I've added 307 handling (#155) + for 301 and 302, I mimic IE behaviour, to replace HTTP verb by GET after redirection. For technical details: https://github.com/kennethreitz/requests/pull/269
It's a really an issue for us, because we need to interact with some old fashion webapp without WS API that use a lot this assumption.
Moreover, this behaviour is now official, 307 HTTP code has been created to handle correctly redirections.
Thanks for reviewing.
Regards.