-
Posts
3543 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503
-
Trade offer polling not always working
Dr. McKay replied to JAHMCR's topic in node-steam-tradeoffer-manager
If you're passing an instance of SteamUser in to the constructor, I recommend you don't poll more frequently than every 30 seconds (30000). And you shouldn't be running full updates more frequently than every 2 minutes (120000). In other words, the defaults are fine. -
You can't use OpenID with steam-user.
-
Offer state event questions
Dr. McKay replied to AshIgorash's topic in node-steam-tradeoffer-manager
I don't believe I've ever seen this happen. -
The inspect request is rate limited. The absolute fastest I've seen it work is once per second, and that may even be too frequent these days.
-
I suggest you ask the csfloat project, with which I have no relation.
-
There's no reason to ever call logOn in an interval. If you receive the error event, then just log on again and you'll always be connected.
-
ItemServerAvailable eResult 20
Dr. McKay replied to behzadpp's topic in node-steam-tradeoffer-manager
https://steamerrors.com/20 -
How to get defindex or item data from CEconItem
Dr. McKay replied to JAHMCR's topic in node-steam-tradeoffer-manager
You can't really reliably do it. There are some community endpoints that include app_data on the item description, which does contain def_index, but not all have that. steam-tradeoffer-manager isn't using IEconItems_440 because that's a TF2-specific interface and steam-tradeoffer-manager is meant to work with any Steam app. -
getUserInventoryContents always returning 401
Dr. McKay replied to JAHMCR's topic in node-steamcommunity
Yes, 76561198024816553 is a full SteamID, not an account ID. An account ID is what you see in a [U:1:46143802] ID (46143802 is the account ID). -
If you're fetching your time offset and it's 1, then your clock is correct. If you're still being told that your authenticator is invalid, then the secret must be wrong.
-
No. When you sign into a site using Steam OpenID, the site only gets your SteamID and nothing more. Certainly not an access token. That's great. I'm still not going to help you compromise your own account.
-
You need to provide the asset owner's SteamID as well. The linked repository only indicates that S is optional because you need either S or M (M is used for market listings).
-
Giving an access token to a third-party site is effectively the same thing as giving them your username, password, and mobile auth code. I wouldn't recommend it.
-
No, use steam-session for that.
-
manager.on("offerList") not working
Dr. McKay replied to vinilllll's topic in node-steam-tradeoffer-manager
The third-party typescript definitions haven't been updated for 2.11.0. Just suppress the error. -
Cannot reproduce. Are you on the latest version?
-
Expireafter in trade doesn't work
Dr. McKay replied to Stan1slaw's topic in node-steam-tradeoffer-manager
Cannot reproduce. -
Duplicate of several threads here: https://dev.doctormckay.com/forum/9-node-steam-tradeoffer-manager/
-
The manager dosent seems to be working
Dr. McKay replied to TheMaster's topic in node-steam-tradeoffer-manager
That's the point. Enabling useAccessToken disable fetching an API key. -
steam web api not return new offers (cs2 item)
Dr. McKay replied to xeroz333's topic in node-steam-tradeoffer-manager
Not that I'm aware of. I've heard, but not personally confirmed, that if you use an access token you still receive CS2 offers as normal.