Python-Tls-Client
Python-Tls-Client copied to clipboard
certificate signed by unknown authority
trafficstars
im getting tls: failed to verify certificate: x509: certificate signed by unknown authority .
response = requests.post(
url,
cookies=cookieJar,
headers=headers,
data=data,
proxy=proxy,
)
in python requests module i can pass verify=False which will resolve this. but is there any option on tls_client for disable certificate verification?
Wondering about same thing #75 seems to address the same issue.