Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 521 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 521 Bytes

Xbox

PHP to retrieve Xbox Live informations for gamer

Howto

include(__DIR__ . '/Live/Gamecard.php');

/**
 * @var $xboxLive Xbox_Live_Gamercard
 */
$xboxLive = new Xbox_Live_Gamercard;

$xboxLive->setGamerTag('xunnay')->setlanguage('fr-FR')->callApi();

echo $xboxLive->getProfilUrl();
echo "<br />";
echo $xboxLive->getAvatarUrl();
echo "<br />";
echo $xboxLive->getReputation();
echo "<br />";
echo $xboxLive->getGamerScore();
echo "<br />";
var_dump($xboxLive->getPlayedGames(5));
echo "<br />";