我正在尝试使用 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)
.