您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何解決python中requests證書問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
用requests包請求https的網站時,我們偶爾會遇到證書問題。也就是常見的SSLerror,遇到這種問題莫慌莫慌。
這里沒有找到合適的網站去報SSL證書的錯誤,所以就假裝請求了一個https的網站,然后給報了SSLerror了,然后下面是解決方法
可以直接關閉驗證ssl證書
import requests ''' :param proxies: (optional) Dictionary mapping protocol to the URL of the proxy. :param verify: (optional) Either a boolean, in which case it controls whether we verify the server's TLS certificate, or a string, in which case it must be a path to a CA bundle to use. Defaults to ``True``. ''' r = requests.get('https://kyfw.12306.cn',verify=False) print(r.text)
這種方式直接在函數里面加如verify改變Ture或者False即可,因為post與get調用的都為request()函數,所以get與post都一樣。
如果這種方式奏效就用這種方式,如果不奏效就用下面的一種
import requests ''' :param verify: (optional) Either a boolean, in which case it controls whether we verify the server's TLS certificate, or a string, in which case it must be a path to a CA bundle to use. Defaults to ``True``. ''' ## 證書路徑 cert = '../cert/test.pem' r = requests.get('https://kyfw.12306.cn',verify=cert) print(r.text)
就用這種,直接把證書的路徑丟給verify,請求即可
感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何解決python中requests證書問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。