Python, https requests, SSL error

Python, https requests, SSL error

Open fidder, without verify=Fales or with verify=True
Can’t call the URL for SSL cerficate_verify_failed

r4 = s.post(url3,headers=headers,data=data,cookies=coo)
r4 = s.post(url3,headers=headers,data=data,cookies=coo,verify=True)

在这里插入图片描述
Resove this issue
Close fidder
Add verify=False as below:
r4 = s.post(url3,headers=headers,data=data,cookies=coo,verify=False)

Reference:
https://www.cnblogs.com/yoyoketang/p/6953757.html

猜你喜欢

转载自blog.csdn.net/sinat_37960022/article/details/103131874