0
我想在我的網站上使用API顯示Twitch上的最後100個關注者。但是,我對JSON知之甚少。無法使用PHP顯示Twitch API數據
目前我有這樣的:
$string = file_get_contents("https://api.twitch.tv/kraken/channels/pewdiepie/follows.json?limit=100");
$json=json_decode($string,true);
但我不能在while循環得到它。
我嘗試這樣做:
foreach ($json as $key => $value){
echo $value['name'];
}
有人能幫助我嗎?我只想要在頁面上顯示最後的100個關注者名稱。