python-slack-sdk: SSL Certification error
Description
I’ve built a bot in python 3.7 using a virtual engine, when I come to run the code I get this error:
/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/urllib3/connectionpool.py:857: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecureRequestWarning)
Traceback (most recent call last):
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/slackclient/server.py", line 179, in connect_slack_websocket
http_proxy_auth=proxy_auth)
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/websocket/_core.py", line 494, in create_connection
websock.connect(url, **options)
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/websocket/_core.py", line 217, in connect
options.pop('socket', None))
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/websocket/_http.py", line 126, in connect
sock = _ssl_socket(sock, options.sslopt, hostname)
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/websocket/_http.py", line 253, in _ssl_socket
sock = _wrap_sni_socket(sock, sslopt, hostname, check_hostname)
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/websocket/_http.py", line 232, in _wrap_sni_socket
server_hostname=hostname,
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 412, in wrap_socket
session=session
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 850, in _create
self.do_handshake()
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py", line 1108, in do_handshake
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/slackclient/client.py", line 52, in rtm_connect
self.server.rtm_connect(use_rtm_start=with_team_state, **kwargs)
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/slackclient/server.py", line 147, in rtm_connect
self.connect_slack_websocket(self.ws_url)
File "/Users/sophie/Dropbox/Programming/gallagherbot/lib/python3.7/site-packages/slackclient/server.py", line 186, in connect_slack_websocket
raise SlackConnectionError(message=str(e))
slackclient.server.SlackConnectionError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)
Connection failed. Exception traceback printed above.
This seems similar to this: https://github.com/slackapi/python-slackclient/issues/325 but I tried the User’s suggestion and it hasn’t changed anything.
I have the bot’s ‘Bot User OAuth Access Token’ stored as a variable which I refer to in the code
Any suggestions?
Describe your issue here.
What type of issue is this? (place an x in one of the [ ])
- [x ] bug
- enhancement (feature request)
- question
- documentation related
- testing related
- discussion
Requirements (place an x in each of the [ ])
- [x ] I’ve read and understood the Contributing guidelines and have done my best effort to follow them.
- [x ] I’ve read and agree to the Code of Conduct.
- [x ] I’ve searched for any related issues and avoided creating a duplicate issue.
Bug Report
Filling out the following details about bugs will help us solve your issue sooner.
Reproducible in:
slackclient version:
python version: 3.7
OS version(s):
Steps to reproduce:
Expected result:
What you expected to happen
Actual result:
What actually happened
Attachments:
Logs, screenshots, screencast, sample project, funny gif, etc.
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 35 (8 by maintainers)
This is sloved my problem…
that works for me, i’ve seen it, the
aiohttpexpects a ssl_context, buuut… the web_client really needs to avoid this kind of exception, because the ssl parameter is optional in constructor.I have run into the same exact problem today. I fixed it by downgrading the websocket-client library to 0.47.0
Worked for me too
Hey, I just ran into a similiar problem in another project and googling has this as the top result bringing me back. Doing as you linked fixed the issue. “./Applications/Python\ x.x/Install\ Certificates.command” caused it to work. on versions above 0.47.0
There are a couple of things that can be done: 1. Downgrading the
websocket-clientlibrary to0.47.0 2. Or, download the certificate (wget https://www.tbs-certificats.com/issuerdata/DigiCertGlobalRootCA.crt), then set the environment variableexport WEBSOCKET_CLIENT_CA_BUNDLE=DigiCertGlobalRootCA.crtThis worked for me unlike the other proposed solutions here.
I’ve also found success setting the Requests or OpenSSL certificates:
i made an issue for my suggestion: websocket-client/websocket-client#451. if the maintainers indicate that they’d merge that change in, we can contribute the code.
Due to the fact that no changes should be made in this library I’m closing this issue. The workarounds posted above should be explored if you need to remain on v1 of this project. (i.e. You need to use Python 2.7) I’d encourage all others to take advantage of all the new features in v2 by following the migration guide. SSL configuration is better supported in v2. You can take a look at one approach to doing this with the new client in the tutorial.
I’ve also had success setting the ssl context:
I named possible solutions in https://github.com/websocket-client/websocket-client/issues/451#issuecomment-417918570 if you care to try.