scrapy.FormRequest使用代理请求超时,但是requests请求正常

发布于 2022-09-07 16:27:27 字数 1465 浏览 24 评论 0

同样的代理ip,用requests请求正常,用scrapy.FormRequest请求就超时

相关代码

In [11]: r = requests.post('http://httpbin.org/post', proxies={'http': proxy_server, 'https': proxy_server})
2018-07-10 14:10:04 [urllib3.connectionpool] DEBUG: Starting new HTTP connection (1): 113.128.26.187
2018-07-10 14:10:04 [urllib3.connectionpool] DEBUG: http://113.128.26.187:4352 "POST http://httpbin.org/post HTTP/1.1" 200 275

In [12]: r.text
Out[12]: '{"args":{},"data":"","files":{},"form":{},"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate","Connection":"close","Content-Length":"0","Host":"httpbin.org","User-Agent":"python-requests/2.18.4"},"json":null,"origin":"113.128.26.187","url":"http://httpbin.org/post"}\n'

In [13]: proxy_server
Out[13]: 'http://113.128.26.187:4352'

In [14]: req = scrapy.FormRequest('http://httpbin.org/post',formdata={'foo':'bar'}, meta={'proxy': proxy_server})

In [15]: fetch(req)
2018-07-10 14:13:58 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://httpbin.org/post> (failed 1 times): User timeout caused connection failure: Getting http://httpbin.org/post took longer than 180.0 seconds..

如图
2018-07-10 14:27:39 使用FormRequest请求
clipboard.png
2018, 7, 10, 14, 28, 19使用Requests请求,以证明代理ip没有失效
clipboard.png

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文