-
Posts
3601 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
I get an error when using the method getInviteLinkInfo()
Dr. McKay replied to sanchoys's topic in node-steam-user
Fixed in 5.0.10 -
Yep, it's a system befitting Valve. You log in by passing a refresh token in the field named access_token, because of course you do.
-
The "Already attempting to log on, cannot log on again" error cannot be caught under any circumstances. If you need to, keep track in your own code if you're already attempting to log on.
- 1 reply
-
- steam-user
- error
-
(and 2 more)
Tagged with:
-
https://github.com/DoctorMcKay/node-steam-user#using-refresh-tokens
-
Correct.
-
getAppRichPresenceLocalization URL endpoint?
Dr. McKay replied to JustTemmie's topic in node-steam-user
steam-user communicates directly with the Steam backend using the same protocol as the Steam client, which is not HTTP. Some Steam endpoints are available both via the Steam client and the WebAPI, but this particular one isn't. ICommunityService/GetAppRichPresenceLocalization would be the URL if this one was available via WebAPI, but it's not. -
Use getExchangeDetails.
-
Those are the asset IDs before the exchange happened, not after.
-
It works for one-sided trades as well. An exchange is still an exchange, even if one side is empty. Extracts the ID how?
-
getOffers don't work for 730appid without access token
Dr. McKay replied to rikray_'s topic in node-steam-tradeoffer-manager
Either use getExchangeDetails or use your access token to access the WebAPI. -
Yes, Node is very different from C#.
-
getOffers don't work for 730appid without access token
Dr. McKay replied to rikray_'s topic in node-steam-tradeoffer-manager
Enable the useAccessToken option. -
getOffers don't work for 730appid without access token
Dr. McKay replied to rikray_'s topic in node-steam-tradeoffer-manager
This was an intentional change by Valve. -
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getexchangedetailsgetdetailsiffailed-callback
-
Garbage is only collected periodically. If you want to fetch that much data in Node, you're going to need more than 200 MB of RAM.
-
Not possible without calling additional methods, no.
-
No data in PICS package cache yet. How to set data?
Dr. McKay replied to ProxyCC's topic in node-steam-user
https://github.com/DoctorMcKay/node-steam-user#getownedappsfilter Don't call getOwnedApps until after the ownershipCached event is emitted. Also, it doesn't take a callback argument. -
You can't. This is a Node.js module only.
-
Gotcha.
-
You're treating the symptom, not the cause. There's no scenario where this.partner should be undefined or otherwise invalid unless you're doing something wrong.
-
Chrome extensions support (manifest.json v3)
Dr. McKay replied to m1k0l4ji3's topic in node-steam-session
steam-session is a Node.js module, not a browser module. -
Chrome extensions support (manifest.json v3)
Dr. McKay replied to m1k0l4ji3's topic in node-steam-session
?? What does this have to do with steam-session? -
Show how you're creating a trade offer (new TradeOffer(...))