tornado.httpclient.AsyncHTTPClient如何使用代理请求一个http服务?

发布于 2022-09-02 01:57:37 字数 701 浏览 27 评论 0

  1. 描述你的问题
    我在torando服务端需要使用tornado.httpclient.AsyncHTTPClient通过代理请求一个http服务,但是抛出了NotImplementedError: proxy_host not supported 的错误。
    请问有什么好的解决方案吗?难道tornado的异步请求httpclient不支持代理?

  2. 贴上相关代码
    @asynchronous
    @gen.coroutine
    def get(self):

       req = tornado.httpclient.HTTPRequest('http://****',
       proxy_host='Proxy_IP_Address', proxy_port=8888)
       response = yield AsyncHTTPClient().fetch(req)
       result=response.body
       self.write(str(result))
       self.finish()
  3. 贴上报错信息

    NotImplementedError: proxy_host not supported
  4. 贴上相关截图

  5. 已经尝试过哪些方法仍然没解决(附上相关链接)

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

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

发布评论

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

评论(3

水染的天色ゝ 2022-09-09 01:57:37
proxy_host (string) – HTTP proxy hostname. To use proxies, proxy_host and proxy_port must be set; proxy_username and proxy_pass are optional. Proxies are currently only supported with curl_httpclient.

To select curl_httpclient, call AsyncHTTPClient.configure at startup:

AsyncHTTPClient.configure("tornado.curl_httpclient.CurlAsyncHTTPClient")

稍微看看文档就好了 代理只支持 curl_httpclient

薄暮涼年 2022-09-09 01:57:37

Proxies are currently only supported with curl_httpclient.

via http://www.tornadoweb.org/en/stable/httpclient.html#tornado.httpclient.HTTPRequest

毅然前行 2022-09-09 01:57:37
httpclient.AsyncHTTPClient.configure(
            "tornado.curl_httpclient.CurlAsyncHTTPClient"
        )

这个文档有说明,只有curl_httpclient支持代理,你需要这么配置。
使用的时候给fetch函数加上代理参数就行proxy_host="127.0.0.1", proxy_port=8787。

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