I want to access the web service via HTTPS.
I was given a client certificate (file p12) to access it. We used to use basic authentication.
Using python I'm not sure how to access it.
I want to use httplib2
h = Http()
resp, content = h.request("https://example.com/webservice", "POST", xml_data)
print content
Now I am completely new to SSL, can I just call add_cert or somethign in the same way and give it a p12 file. Do I need to convert it to a PEM file?
source
share