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

  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. 已经尝试过哪些方法仍然没解决(附上相关链接)

阅读 10.2k
3 个回答
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

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

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

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏