I fixed this issue by generating a bundle certificates file and attaching to my requests, follow these steps: on Chrome, click on the padlock icon -> connection is secure -> certificate is valid it should show you the certificate, then you have to click on the details tab -> export The most important part is selecting the "Certificate Chain" option when saving, so it will add all the intermediate CA certificates, not only your certificate after saved the file, copy it to your repository and point it in the requests like this python snippet: requests.get( "myapi.com/whatever/" verify="/your_repo/mydomain.com.cer" )
... View more