This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Description
Hi,
I have proxy server to use and try to send simple message.
token = 'Blah-Blah;
proxy_endpoint = 'http://proxyserverip:8080'
slack = Slacker(token,
http_proxy=proxy_endpoint,
https_proxy=proxy_endpoint,)
slack.chat.post_message('#somechannel', 'Hello!!')
However, error message comes as below
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)
I think there is some way to walk around disabling verify with get(..., verify=False).
Is this bug? Is there a way to do this walk around?
SB