7
>>> 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()
>>>
>>>
なぜそれがローカル発行者証明書を取得することができません取得することができませんでし?これをどうすれば解決できますか?ブラウザでquora.comを開くと、そのIDが確認されていることがわかります。これはなぜですか? pycurlにブラウザで使用するのと同じ証明書を使用するにはどうすればよいですか?
関連:http://stackoverflow.com/questions/8332643/pycurl-and-ssl-cert –