我想獲得一個信道的信息,這是網上目前與否:抽搐電視頻道信息:不工作
$stream_list = ...;
$mycurl = curl_init();
curl_setopt ($mycurl, CURLOPT_HEADER, 0);
curl_setopt ($mycurl, CURLOPT_RETURNTRANSFER, 1);
//Build the URL
$url = "http://api.justin.tv/api/stream/list.json?channel=" . $stream_list;
curl_setopt ($mycurl, CURLOPT_URL, $url);
$web_response = curl_exec($mycurl);
,但總是感覺有一個空數組返回。我看到很多基於它的例子 - 我的工作不行,我做錯了什麼?