Hi,
On the server side of my Django website I use pycurl (version 7.20.x) to
connect to
authorize.net (to send credit card info). On Nov 4
Authorize.net will turn off SSLv3. So I'm wondering if my use pycurl
will continue to work. To be honest I haven't thought about it much
since the pycurl seem to take care of everything that Authorize.net
required. Now I'm questioning if pycurl will continue to work and if I
need to change anything - what do I chan.
c=pycurl.Curl()
c.setopt(c.URL, GatewayURL)
c.setopt(c.POST, TRUE)
c.setopt(c.SSL_VERIFYPEER, FALSE)
Thanks in advance,
Johnf