response = requests.post(url, data=data.encode('UTF-8'),
cert=('/***/***/certs/apiclient_cert.pem', '/***/***/certs/apiclient_key.pem'))
我是使用这样的代码实现退款向微信服务发送请求。但是我在本地的mac上试的时候,请求可以发出去,返回回来时是因为账户余额不足无法退款。但是当我将代码发布在centos上时,却报一个错误:“OSError: Could not find the TLS certificate file, invalid path: /***/***/certs/apiclient_cert.pem”,可是我的路径就是这个。
请检查一下证书是否过期;是否使用了正确的证书;证书路径是否使用绝对路径
好的。证书是使用的绝对路径。我想请问下证书的有效期是多久;