scrapy默认使用HTTP 1.0
看起来 Scrapy 默认使用 HTTP 1.0。是否有设置使其使用 HTTP 1.1 发送请求?
谢谢。
It looks like Scrapy is using HTTP 1.0 by default. Is there a setting to make it use HTTP 1.1 to send request?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 http://dev.scrapy.org/wiki/ScrapyRecipes:
如何欺骗请求符合 HTTP 1.1
您可以通过使用以下(未记录的)设置覆盖 Scrapy HTTP Client Factory 来做到这一点:
这是 myproject.downloader 模块的可能实现:
From http://dev.scrapy.org/wiki/ScrapyRecipes:
How to spoof requests to be HTTP 1.1 compliant
You can do this by overriding the Scrapy HTTP Client Factory, with the following (undocumented) setting:
Here's a possible implementation of myproject.downloader module: