Rumah  >  Soal Jawab  >  teks badan

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

迷茫迷茫2742 hari yang lalu941

membalas semua(3)saya akan balas

  • 迷茫

    迷茫2017-04-17 17:14:00

    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

    balas
    0
  • 天蓬老师

    天蓬老师2017-04-17 17:14:00

    Proxies are currently only supported with curl_httpclient.

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

    balas
    0
  • PHP中文网

    PHP中文网2017-04-17 17:14:00

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

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

    balas
    0
  • Batalbalas