python - tornado.httpclient.AsyncHTTPClient如何使用代理请求一个http服务?
迷茫
迷茫 2017-04-17 17:12:00
0
3
967
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(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")

Just take a look at the documentation. The proxy only supports curl_httpclient

Peter_Zhu

Proxies are currently only supported with curl_httpclient.

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

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

This document explains that only curl_httpclient supports proxy, you need to configure it like this.
When using it, just add proxy parameters to the fetch function proxy_host="127.0.0.1", proxy_port=8787.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!