python urllib2 表单发送的困难:网站说我没有启用 cookie,但我应该启用

发布于 2024-11-15 14:42:46 字数 685 浏览 1 评论 0原文

因此,我尝试使用 urllib/urllib2 提交一个表单,该表单应该设置一些 cookie 来让我登录。但是,该网站似乎确信“cookie 未启用”,尽管我已经告诉 urllib 处理 cookie。

这就是我的代码的样子:

opener = urllib2.build_opener( urllib2.HTTPCookieProcessor() )
urllib2.install_opener( opener )
params = urllib.urlencode( { 'username': 'user', 'password': 'pass' } )

f = opener.open( 'http://example.com/login/',  params )
data = f.read()
print data # Returns a webpage which shows "You need to enable cookies!"
f.close()

我缺少什么?我知道我之前使用过类似的方法进行登录。

编辑:在检查我自己填写表格时发送的标头时,我想我可能遇到了同样的问题(但没有回答)此处(表单以 302 重定向响应)。哼。

So, I'm trying to submit a form with urllib/urllib2 which should set some a cookie to log me in. However, the website seems convinced that "cookies are not enabled" though I've told urllib to process cookies.

This is what my code looks like:

opener = urllib2.build_opener( urllib2.HTTPCookieProcessor() )
urllib2.install_opener( opener )
params = urllib.urlencode( { 'username': 'user', 'password': 'pass' } )

f = opener.open( 'http://example.com/login/',  params )
data = f.read()
print data # Returns a webpage which shows "You need to enable cookies!"
f.close()

What am I missing? I know I've used a similar recipe before for logging in.

Edit: On examining the headers that get sent when I fill the form out myself, I think I may be having the same problem asked (but not answered) here (the form responds with a 302 redirect). Hum.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

做个ˇ局外人 2024-11-22 14:42:46
import urllib2,urllib,cookielib

cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener( opener )
params = urllib.urlencode( { 'username': 'user', 'password': 'pass' } )

f = opener.open( 'http://example.com/login/',  params )
data = f.read()
print data 
f.close()

试试这个。

import urllib2,urllib,cookielib

cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener( opener )
params = urllib.urlencode( { 'username': 'user', 'password': 'pass' } )

f = opener.open( 'http://example.com/login/',  params )
data = f.read()
print data 
f.close()

try this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文