I try to make response using a particular link. https://www.fastwin.io:9873/getEnvelopeRank
But got bogged down with problem.
When I try to make request through the browser I get normal response. But if I try to make request through requests
lib I will get
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)
requests to other sites work fine.
import requests
response = requests.get("https://www.fastwin.io:9873/getEnvelopeRank")
print(response.text)