pycurl https error: unable to get local issuer certificate

pycurl https error: unable to get local issuer certificate

>>> import pycurl
>>> c = pycurl.Curl()
>>> c.setopt(c.URL, 'https://quora.com')
>>> c.perform()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
pycurl.error: (60, 'SSL certificate problem: unable to get local issuer certificate')
>>>
>>> c.setopt(c.URL, 'http://quora.com')
>>> c.perform()
>>>
>>>

Warum ist es nicht get local issuer certificate? Wie kann ich dieses Problem lösen? Wenn ich öffnen quora.com in meinem browser sehe ich, dass seine Identität überprüft wird. Warum ist das der Fall? Wie bekomme ich pycurl verwenden die gleichen Zertifikate mein browser verwendet?
pycurl https error: unable to get local issuer certificate

InformationsquelleAutor prongs | 2013-04-24
Schreibe einen Kommentar