Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- error_reporting(0);
- $api = "AQUI LA API DE STEAM"; <!-- Puedes obtener la api de steam en la siguiente url: https://steamcommunity.com/dev-->
- $steamID64 = $_GET["steamID64"];
- $file = file_get_contents("http://api.steampowered.com/IPlayerService/GetRecentlyPlayedGames/v0001/?key=$api&steamid=$steamID64", false, $context);
- $juegosname = json_decode($file, true);
- {
- }
- ?>
- <?php
- for ($i=0; $i < 60; $i++) {
- echo "". $juegosname['response']['games'][$i]['name'];
- }
- ?>
Add Comment
Please, Sign In to add comment