SSLCertVerificationError
in Python), don’t worry — this is a common issue, and there’s a way around it. These errors typically pop up when your system can’t verify the SSL certificate of the site you’re trying to reach. But you can bypass them by disabling SSL verification.
NODE_TLS_REJECT_UNAUTHORIZED
to 0
:
CURLOPT_SSL_VERIFYHOST
and CURLOPT_SSL_VERIFYPEER
to disable SSL verification:
InsecureSkipVerify
to true
within the tls.Config
: