-
Posts
3567 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Why would you need to hit the /tradeoffers/privacy endpoint ever?
-
Getting tradehold of user without getUserDetails.
Dr. McKay replied to Devx09's topic in node-steam-tradeoffer-manager
https://steamapi.xpaw.me/#IEconService/GetTradeHoldDurations -
HTTP/SOCKS proxy settings not applied - Steam sees real IP
Dr. McKay replied to ancymon's topic in node-steam-user
You've got some problem with your proxy being unable to connect to Steam, it seems.- 3 replies
-
- steam-user
- bug
-
(and 2 more)
Tagged with:
-
HTTP/SOCKS proxy settings not applied - Steam sees real IP
Dr. McKay replied to ancymon's topic in node-steam-user
The string you pass to httpProxy needs to start with http:// createConnection is not a valid option for the SteamUser constructor. To use a SOCKS proxy, you should use the socksProxy option.- 3 replies
-
- steam-user
- bug
-
(and 2 more)
Tagged with:
-
It may not be enabled on that phone, but it's enabled somewhere.
-
You clearly already have MFA enabled if it's asking for an MFA code.
-
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.
-
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.
-
It's a Date object. You can use its UTC methods to manipulate the object in UTC/GMT.
-
It's fine in this case, don't worry about it.
-
Acessing contents of "Join Game" button on profile
Dr. McKay replied to Morgyn's topic in node-steamcommunity
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. -
Acessing contents of "Join Game" button on profile
Dr. McKay replied to Morgyn's topic in node-steamcommunity
Why would you need to authenticate? Just use an API key. -
Acessing contents of "Join Game" button on profile
Dr. McKay replied to Morgyn's topic in node-steamcommunity
You can get that data using GetPlayerSummaries. -
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.
-
Values like what?
-
Did you decline the login on your mobile device? That's what I've seen cause FileNotFound.
-
Error 26 (eruslt=26) - unable to send offers via BOT
Dr. McKay replied to Pip's topic in node-steam-tradeoffer-manager
Ignore any id and assetid properties in the description object when you merge it onto the asset object. -
Error 26 (eruslt=26) - unable to send offers via BOT
Dr. McKay replied to Pip's topic in node-steam-tradeoffer-manager
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.