我正在尝试通过API发送数据,但是使用以下代码收到SSL证书验证失败错误:
import requests
url = "https://urlhere"
payload = "name=Test&description=Test&deadline=2017-12-31&disableEmail=true&campaignFilterId=00ad9cac28fa4c29fdb641c64b007a0b&type=Manager"
headers = {
'x-csrf-token': "TVUmiEALzVRQDkoQWbzdLI6l6NgftGoU",
'content-type': "application/x-www-form-urlencoded",
'cache-control': "no-cache",
'postman-token': "f8a9c488-0402-be25-aefb-cb2df65897f3"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
我知道使用“verify = False”但是明白这不是推荐的解决方法。这可能有什么问题?我不认为它是服务器,因为当我在Postman中运行这个相同的API调用时它运行没有问题。