我正在尝试将 cURL 与 Stack Exchange API 一起使用,但我似乎得到了一个空响应,关于发生了什么的任何想法?
我的代码是:
function get($get){
$ch = curl_init("http://api.stackoverflow.com/1.1/search?intitle=meteor");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_ENCODING , "gzip");
$decoded = json_decode(curl_exec($ch), true);
var_dump($decoded->questions[0]->title);
}
get("stackoverflow");