Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3562
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. It may not be enabled on that phone, but it's enabled somewhere.
  2. I'd guess your refresh token is probably expired or now invalid.
  3. You clearly already have MFA enabled if it's asking for an MFA code.
  4. Can't be done. You can get a web logon nonce from https://steamcommunity.com/chat/clientjstoken but that's not the same thing as a refresh token for the client; you have to send that as web_logon_nonce in the CMsgClientLogOn message.
  5. You would need to download and parse items_game.txt, look up the sticker by its sticker_id, then fetch your appropriate language file to translate the localization key into an actual name.
  6. It's a Date object. You can use its UTC methods to manipulate the object in UTC/GMT.
  7. Market confirmations have existed for a very long time. You can use node-steamcommunity to accept them.
  8. It's fine in this case, don't worry about it.
  9. Those xml endpoints are pretty unreliable and anything that uses them should probably be considered deprecated. Using the WebAPI for anything that it covers is going to be your best bet.
  10. Why would you need to authenticate? Just use an API key.
  11. You can get that data using GetPlayerSummaries.
  12. That's expected behavior. If it's no longer connected to Steam, the data may be stale. Cache it somewhere else yourself if you need it after disconnect.
  13. Values like what?
  14. Did you decline the login on your mobile device? That's what I've seen cause FileNotFound.
  15. Ignore any id and assetid properties in the description object when you merge it onto the asset object.
  16. That error code indicates that your item ID is wrong or doesn't exist. Some people have reported that item descriptions now contain invalid asset IDs which you need to filter out if you're parsing inventories yourself.
  17. You likely have some kind of network issue. Add this and see what's happening: client.on('debug', console.log);
  18. Looks fine to me, you probably have a mistake elsewhere in your code.
  19. What versions are you using?
  20. client.chat.on('chatMessage', function (message) { // message is an object that includes chat_group_id and chat_id properties // ref: https://github.com/DoctorMcKay/node-steam-user/wiki/SteamChatRoomClient#incoming-chat-message });
  21. You can't send a trade with an API key. If a trade offer includes CS2 items, you can't check its status with an API key.
×
×
  • Create New...