-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to turn off SSL verification when using requests #10
Comments
Thank you for your question @byu1999 - could you let me know what platform (Windows, Linux, MacOS, etc) and python version you are using? With that information, I can better test a patch to provide that option. |
I am currently on Windows with python version 3.10. Thank you! |
Thank you! I'm working on a new version with the ability to disable SSL verification. Should be ready in a day or so. |
I may have a quick fix, @byu1999 , when you define the connection, use the following setting:
...and that should hypothetically work. Let me know if it does! Full example:
|
Hi Mike, I have tried the quick fix method already, and it is still not working on my end. Thank you for all your help! |
@byu1999, could you send me the tracebook (error log) with the ssl verify error? |
This is the error I get: The reason for it is my company's security settings. I get this error when I make http requests. How I have been able to deal with them in the meantime is turn off SSL Certificate Verification with the verify parameter in Python's request library. If there is an easy way to do this with your library, that would be the easiest solution for me. Thanks again! |
I am having trouble creating a connection due to an SSL certificate verification error that arises when I use the requests library. I usually fix this error by setting verify=False for the session. However, I do not have the ability to do so this at the moment. Is there a way to add an extra parameter in the ffiec_connection module, so I can disable SSL certificate verification?
The text was updated successfully, but these errors were encountered: