How To Fix "bad Handshake" Sslerrors When Utilizing Python Requests
I'm trying to get access to the BambooHR API (documentation here), but I receive the following error params = { 'user': username, 'password': password,
Solution 1:
You try by setting verify=False, use this option if you are using self-signed certificates.
r = requests.get(url, params=params, verify=False)
More info http://docs.python-requests.org/en/master/user/advanced/#ssl-cert-verification
Post a Comment for "How To Fix "bad Handshake" Sslerrors When Utilizing Python Requests"