We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
检查此 tweepy 提交;它使用 urllib2 通过代理执行 APIMethods。
Check this tweepy commit; it uses urllib2 for executing APIMethods through proxies.
Tweepy 在内部使用
httplib
,它的级别太低,无法进行代理设置。您必须更改Stream._run()
方法以连接到代理而不是目标主机,并在请求中使用完整的(带有方案和主机)URL。Tweepy uses
httplib
internally which is too low level to have proxy settings. You have to changeStream._run()
method to connect to proxy instead of target host and use full (with scheme and host) URL in request.