Jump to content
McKay Development

i_love_cats

Member
  • Posts

    3
  • Joined

  • Last visited

Everything posted by i_love_cats

  1. Fixed by updating 🤭 by the way, is it the only way to obtain the web cookies ? I used to do it with steam-session but refresh tokens are no longer supported.
  2. Hello, the websession is never emitted when logged in with refresh token. Only loggedOn is emitted. const SteamUser = require("steam-user"); const client = new SteamUser(); client.logOn({ refreshToken: "YOUR_REFRESH_TOKEN" }); client.on("loggedOn", () => { console.log("Logged in"); }); client.on("webSession", (sessionID, cookies) => { console.log("Web session fired!", sessionID, cookies); }); client.on("error", (err) => console.error(err));
  3. Hey, Is there any way to sign out of all devices ? Similarly to Remove All Credentials button from this page: "https://store.steampowered.com/account/authorizeddevices" Thank you!
×
×
  • Create New...