我有以下代码适用于不使用 SSL 的测试区域,但不适用于生产系统。该调用本身可以在浏览器中运行,但是通过 cURL 运行它时,出现 500 错误。
$region = "https://api.mysite.com/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . "/cacert.pem");
curl_setopt($ch, CURLOPT_FAILONERROR, true);
curl_setopt($ch, CURLOPT_URL, $region . $api);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$resp = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
return $resp;
如果我不输入 CURL_OPT_FAILONERROR,那么我不会收到任何错误,只是一个空白响应。我很确定这与通过 https 的事实有关(因为这是我的测试区域和当前区域之间的唯一区别),但我不知道如何让它工作。