$c= curl_init('https://disqus.com/api/3.0/threads/listPosts.json?api_key=EqGFOM4KaZaVb7TuhzxeiCeHBqwOfUHZ5YIih5Al51Fj8p410zsSAFaowG7Tafv5&thread:ident=2&forum=bestcamdirectory&limit=1');
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
$response= curl_exec($c);
echo $response;
curl_close($c);
问题是没有从服务器获得任何东西。我可以使用file_get_Contents ..但是我的服务器不允许使用它..什么是没有得到响应的reeason
答案 0 :(得分:3)
您正在呼叫" https"网站,因此您可能需要将CURLOPT_SSL_VERIFYPEER
设置为false。
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);