Load avatar PHP

shitty example, something simple

<?php
$name = $_GET['username'];
$client_id = ""; //app client id
$json = json_decode(file_get_contents('https://api.twitch.tv/kraken/channels/'. $name .'?client_id='. $client_id));
echo $json->logo;
?>
1 Like