python requests发送HTTPS 请求-不验SSL证书


有时为了方便,在发送请求时把验SSL证书关掉, 设置verify为False,


import requests
from requests import Request, Session

for i in range (0,2):
  s=requests.Session()
  r1= s.get('https://www.baidu.com/&', verify=False)
  print r1



====

/usr/local/python-2.7/lib/python2.7/site-packages/requests/packages/urllib3/connectionpool.py:821: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
  InsecureRequestWarning)
/usr/local/python-2.7/lib/python2.7/site-packages/requests/packages/urllib3/connectionpool.py:821: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
  InsecureRequestWarning)
<Response [200]>




-------------

聊聊生活,谈谈趣事

 


在使用 Pythonrequests 库进行 HTTPS 请求时,有时会遇到 SSL 证书证失败的问题。这通常是由于以下几个原因导致的: 1. **证书过期或无效**:目标网站的 SSL 证书可能已经过期或无效。 2. **自签名证书**:目标网站使用了自签名证书,而是由受信任的证书颁发机构签发的证书。 3. **中间人攻击**:网络中存在中间人攻击,篡改了 SSL 证书。 4. **本地证书完整**:本地机器上缺少某些中间证书,导致证失败。 解决方法如下: 1. **忽略 SSL 证书证**(推荐,除非在测试环境中): ```python import requests response = requests.get('https://example.com', verify=False) print(response.content) ``` 这种方法会忽略 SSL 证书证,存在安全风险。 2. **指定 CA 证书**: 如果你有目标网站的 CA 证书,可以将其路径传递给 `verify` 参数: ```python import requests response = requests.get('https://example.com', verify='/path/to/ca_certificate.pem') print(response.content) ``` 3. **使用 `certifi` 库**: `certifi` 库提供了 Mozilla 提供的证书集合,可以确保你的请求使用最新的受信任证书: ```python import requests import certifi response = requests.get('https://example.com', verify=certifi.where()) print(response.content) ``` 4. **更新本地证书链**: 确保你的操作系统和 Python 环境中的证书链是最新的,可以从证书颁发机构下载最新的证书并更新本地证书存储。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值