1

我正在尝试使用 http.client 发送代理发布请求,但SSL: WRONG_VERSION_NUMBER出现错误。

以下是我当前的代码:

r = http.client.HTTPSConnection("IP:PORT")
r.request('GET', f"http://httpbin.org/get" , headers={"host": "httpbin.org"})
res = r.getresponse()
print(res.read().decode())

它当前返回 SSL 错误。ssl.SSLError: [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1076).

4

0 回答 0