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