csolsztyn Posted November 16, 2017 Share Posted November 16, 2017 Просмотреть файл STEAM PROFILE INVENTORY Можно поставить в любую CMS создав страницу и подредактировать скрипт по выводу информации вашего инвентаря и вещей данной игры. Изменение Чтобы использовать другую игру Steam для инвентаризации, просто измените идентификатор приложения в строке 3. <?php // Change $query = "http://steamcommunity.com/id/".$id."/inventory/json/730/2/"; // to $query = "http://steamcommunity.com/id/".$id."/inventory/json/440/2/"; Вспомогательные функция <?php function getUserInventory($id, $app = 730) { $url = "http://steamcommunity.com/id/" . $id . "/inventory/json/" . $app . "/2/"; $res = file_get_contents($url); $data = json_decode($res, true); return $data["rgDescriptions"]; } $items = getUserInventory("m0nty_tv"); Steam API Пример: <?php // Steam ID of user $id = "m0nty_tv"; // Get JSON Data from Steam API $json = file_get_contents("http://steamcommunity.com/id/".$id."/inventory/json/730/2/"); // Convert JSON string to array $data = json_decode($json, true); // Get the array of items $items = $data["rgDescriptions"]; // Log a list of the items foreach($items as $item) { echo $item["name"] . "<br>"; } XM1014 | Blue Spruce Dual Berettas | Contractor PP-Bizon | Urban Dashed MP7 | Army Recon SCAR-20 | Sand Mesh G3SG1 | Desert Storm MAG-7 | Metallic DDPAT Operation Vanguard Weapon Case Huntsman Weapon Case MP9 | Dart Operation Breakout Weapon Case AK-47 | Redline M4A1-S | Guardian Souvenir MAG-7 | Irradiated Alert P250 | Supernova StatTrak™ Galil AR | Blue Titanium Operation Vanguard Challenge Coin $item В примере можно использовать любой из следующих атрибутов. <?php // Instead of foreach($items as $item) { echo $item["name"] . "<br>"; } // You could use foreach($items as $item) { echo "<img src='http://cdn.steamcommunity.com/economy/image/" . $item["icon_url_large"] . "'><br>"; } // Please note that images must have "http://cdn.steamcommunity.com/economy/image/" prepended before $item["icon_url_large"] appid classid instanceid icon_url icon_url_large icon_drag_url name market_hash_name market_name name_color background_color type tradable marketable commodity market_tradable_restriction descriptions actions market_actions tags Submitter YUJIN Submitted 16.11.2017 Категория Софт 1 Link to comment Share on other sites More sharing options...
qubasmk Posted November 16, 2017 Share Posted November 16, 2017 Nice and thank's, is good. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now