-
I need to be able to ignore ssl for internal sites(self signed certs). Is there a way to do this other then overriding the endpoint_module.py.jinja template to override _get_kwargs and add verify=False to the returned dictionary? Would it make sense to make an enhancement issue to add a should_verify_ssl method/property to the client class similar to the get_headers/get_cookies/get_timeout methods? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Is there a way to construct an |
Beta Was this translation helpful? Give feedback.
-
If anyone is reading this discussion at a later point |
Beta Was this translation helpful? Give feedback.
If anyone is reading this discussion at a later point
Now that MR #497 has been the way to ignore ssl verification is to set verify_ssl=False
in the Client/AuthenticatedClient
client = Client(base_url="https://internal_api.example.com", verify_ssl=False)