WebexPythonSDK icon indicating copy to clipboard operation
WebexPythonSDK copied to clipboard

add support for disabling cert verification

Open fredless opened this issue 5 years ago • 2 comments

related to #133 and for debugging\troubleshooting in general, would be nice to include support for passing verify=False through to requests to make working with a self-signing SSL sniffer (Fiddler or similar) more easily accomplished.

fredless avatar Sep 17 '20 22:09 fredless

..and in the meantime, one way around this is to simply import certifi, ensuring that you add your proxies certificate (in base64) to its CA list beforehand to override the list of trusted CAs. works for most things that use requests underneath.

fredless avatar Sep 17 '20 23:09 fredless

Hi @fredless

thanks for raising this. I just pushed a PR that introduces a disable_ssl_verify flag to the rest session and api object.

sQu4rks avatar Oct 27 '20 11:10 sQu4rks