Hello,
I’d like to display some Informations about the Stream on Website.
With the Code down below it display the Name of the Streamer.
But when i use echo $result[“game”]; or echo $result[“viewers”]; nothing is displayed.
What is required to show this Informations too?
<?php
$url = “https://api.twitch.tv/kraken/users/rockstargames?client_id=xxx”;
$result = file_get_contents($url);
$result = json_decode($result, true);
echo $result[“display_name”];
?>