How to receive the steam level with steam api.. http://api.steampowered.com/IPlayerService/GetSteamLevel/v1/?key=&steamid=
$link = file_get_contents("https://api.steampowered.com/IPlayerService/GetSteamLevel/v1/?key=".$steamauth['apikey']."&steamids=".$_SESSION['steamid']);
$result = json_decode($link, true);
$_SESSION['steam_level'] = $result['response']['player_level'];
I tried with the link above but did not go .. or I did something wrong. Please i need help.. if you give me the solution please write it in php.