各位程序员好,
我正在制作一个带有 https 连接的 API。我想通过证书检查来保护 API 调用。现在我已经从 curl 下载了 cacert.pem 并将其放在我的文件夹中,但它不起作用并给了我这个错误:
SSL certificate problem: unable to get local issuer certificate
好吧,我真的很确定 cacert.pem 文件的位置正确,但是对于你们来说,我一直在编写一些代码以使其正常工作:
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST ,1);
curl_setopt($ch, CURLOPT_USERPWD, $this->api_key . ":" . $this->api_secret);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . "/cacert.pem");
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POSTFIELDS ,$post_vars);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,0);
curl_setopt($ch,CURLOPT_HTTPHEADER,array('Accept: application/json'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER ,1); // RETURN THE CONTENTS OF THE CALL
$data = curl_exec($ch);
我希望你们中的一些人能回答我的问题,因为我真的不太了解 SSL 连接。
提前致谢!