I am currently trying to log into a site using Python however the site seems to be sending a cookie and a redirect statement on the same page. Python seems to be following that redirect thus preventing me from reading the cookie send by the login page. How do I prevent Python's urllib (or urllib2) urlopen from following the redirect?
|
|
You could do a couple of things:
This is a quick little thing that shows both
|
|||||||||
|
|
You could try calling It sounds like your real problem is that |
|||||
|
|
If all you need is stopping redirection, then there is a simple way to do it. For example I only want to get cookies and for a better performance I don't want to be redirected to any other page. Also I hope the code is kept as 3xx. let's use 302 for instance.
In this way, you don't even need to go into urllib2.HTTPRedirectHandler.http_error_302() Yet more common case is that we simply want to stop redirection (as required):
And normally use it this way:
|
||||
|
|
|
This question was asked before here. EDIT: If you have to deal with quirky web applications you should probably try out mechanize. It's a great library that simulates a web browser. You can control redirecting, cookies, page refreshes... If the website doesn't rely [heavily] on JavaScript, you'll get along very nicely with mechanize. |
||||
|
|