I\'m struggling at the moment to get the requests library to perform a simple GET
request to a site of mine with a Let\'s Encrypt certificate. All\'s well with
For any lost soul that stumbled upon this post while looking for a Windows Fix for this issue.
Using Chrome:
Disclaimer: Using Chrome 67.0.3396.99 with Windows 10 64-Bit.
Sounds like your CA CERTS on the machine are not up to date or the web server is not configured to server the full certificate chain.
On OSX you can export all the certs in your keychain access to a .pem file and then point requests to that file: http://movingpackets.net/2015/03/18/telling-openssl-about-your-root-certificates/
CA_BUNDLE = path_to_your_exported_file.pem
response = requests.get(user_account_url, verify=CA_BUNDLE)