Hello,
I was following the tutorial for creating StarterBot and initially I was running into a weird error related to a failed SSL certificate:
slackclient.server.SlackConnectionError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate
Probably would be nice to add this (or a link) at the end of the post if another person runs into this error to know what steps to take.
- Download DigiCerts:
wget https://www.tbs-certificats.com/issuerdata/DigiCertGlobalRootCA.crt
- Export cert:
export WEBSOCKET_CLIENT_CA_BUNDLE=DigiCertGlobalRootCA.crt
Source: https://stackoverflow.com/a/51495648/4422594
That did it for me. 👍
Thanks!
P.S - I could submit a PR updating the content for that post.
Hello,
I was following the tutorial for creating StarterBot and initially I was running into a weird error related to a failed SSL certificate:
slackclient.server.SlackConnectionError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificateProbably would be nice to add this (or a link) at the end of the post if another person runs into this error to know what steps to take.
wget https://www.tbs-certificats.com/issuerdata/DigiCertGlobalRootCA.crtexport WEBSOCKET_CLIENT_CA_BUNDLE=DigiCertGlobalRootCA.crtSource: https://stackoverflow.com/a/51495648/4422594
That did it for me. 👍
Thanks!
P.S - I could submit a PR updating the content for that post.