Hello,
I am making API calls via python script in "Pycharm". Every call I make fails with
requests.exceptions.SSLError: HTTPSConnectionPool(host='api.meraki.com', port=443): Max retries exceeded with url: /api/v1/organizations/xxxxx/networks (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)')))
I can get around this by adding a verify=false header but I want to fix it properly.
I think I fix this with the header verify=[path to raw CA Bundle]
is that correct? and if so, where do I get the cert bundle from?
Thanks!