Jump to content
McKay Development

Search the Community

Showing results for tags 'inventory'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • Releases & Updates
  • Help & Support
    • General
    • Guides
    • node-steam-user
    • node-steamcommunity
    • node-steam-tradeoffer-manager
    • node-steam-session

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Location


Interests

Found 7 results

  1. Hello how are u gys ? last update limit inventory loading by steam how can i fix this. i have website and client need load inventory and trade items to my website . if 2 3 client load inventory steam ban or block my ip or account fro 24 - 48 hr . how can fix this ty
  2. I created a gist [https://gist.github.com/IggsGrey/7faef598e77cfc0609682ad9eb0cb66a] illustrating how to fetch a user's inventory and price individual items using backpack.tf's API. For fear of misleading anyone, I would like some help determining if the procedure for determining item prices is correct. I am doing this because I noticed there are so few examples and implementations of steam and pricing in PHP. For backpack.tf for instance, I found literally no example available for determining prices from steam's inventory API. Any pointers would be helpful to help other devs to not suffer the way I did. (non-steam user who had to develop a steam inventory pricing app)
  3. For the first request I make usual request $steam = "http://steamcommunity.com/inventory/" . $steamid . "/440/2?l=english?count=1000"; $json = file_get_contents($steam); $data = json_decode($json, true); Then I get more_items = 1; last_assetid=123 and I want to do another request which starts with the last_assetid. I know that next $steam should have ?start_assetid=123, but don't have any idea how Would I do it to keep the old content. Please suggest me
  4. Hello, Is there any page that I enter steam id64 profile and show its whole friendlist? need to see how many items in steam items, csgo items, tf2 items If you know, please comment. well thank you.
  5. var offer = manager.createOffer(partnerId);offer.getUserDetails(function (err, them) {if(err){console.log(`Error getting trade info of partnerId; ${partnerId}\nerr:${err}`);}else{console.log(them.escrowDays);console.log(them.contexts);}}); Before I want to send an offer, I want to check the partner inventory. what will console.log(them.contexts); print? I can't test it because my bot account can't trade till 15 days are passed. Does it just print the contexts of the games that the partner have? If this is the case, is manager.getUserInventoryContents the way to get trade?
  6. Hello, i want to implement proxies in my bot so i can be a little more safe about hitting the api request limit. I found out that you have to use the same ip for all request once you login, so should i relogin and use a different ip everytime i want to load the inventory or should i i do it when i detected the response is null? Is there a better way of doing it? Thank you.
  7. Hello all! I want to ask, how I can parse user Steam inventory, because right now steam blocks ip for one minute, if I'm sending 2-3 requests. I'm using node.js, request.js, express.js. Thank you!
×
×
  • Create New...