Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
libcurl 文档说选项 CURLPROXY_HTTP_1_0 自 7.19.4 起已受支持。
PycURL 版本(在 Debian 6 上)显示 libcurl/7.21.0。
但是我在那里找不到常量 PROXYTYPE_HTTP_1_0 (这就是他们命名这些的方式)。
有谁知道给了什么?
CURLPROXY_HTTP_1_0 只是 curl.h 中定义的一个整数常量,您可以查看它的值并将其按值传递给 setopt。
* curl.h * CURLPROXY_HTTP_1_0 = 1, /* added in 7.19.4, force to use CONNECT
c = pycurl.Curl() c.setopt(pycurl.CURLOPT_PROXYTYPE, 1) ...