Python Requests getting SSLerror

前端 未结 4 1060
伪装坚强ぢ
伪装坚强ぢ 2020-11-30 10:10

Trying to make a simple get request using Requests session but I keep getting SSLerror for a specific site. I think maybe the problem is with the site (I did a scan using ht

4条回答
  •  伪装坚强ぢ
    2020-11-30 10:22

    You can disable certificate verification:

    requests.get('https://www.reporo.com/', verify=False)
    

    but without certificate verification there is no man-in-the-middle attack protection.

提交回复
热议问题