Can't ignore/enforce SSL Cert verification.
encompass opened this issue · 0 comments
encompass commented
I have the following I am building:
opener = urllib2.build_opener(
SocksiPyHandler(socks.PROXY_TYPE_SOCKS5, socks_hostname, socks_port, True, socks_username, socks_password))
request = urllib2.Request(url)
response = opener.open(request).read()
But how do I pass my:
context = ssl._create_unverified_context()
It seems to just ignore it when I pass it into ScoksiPyHandler.
Is there any solution for this?