Search the Community
Showing results for tags 'steamguard'.
-
Is there any way to add phone number and steam guard with one SMS code just like in SDA? The thing is that with most services i’m even lucky it i get one auth sms from steam but the second one 75% of the cases won’t arrive so i’ll get an account with a phone number that I can’t even automatically remove because i’ll get no other auth codes. Is there any way to solve or bypass this issue?
-
how would I pass the 2fa 'Steam Guard App Code:' through a discord.js bot message rather than a console.log I'm relatively new to node discord.js and JavaScript in general so any help would be appreciated
- 1 reply
-
- 2fa
- steamguard
-
(and 1 more)
Tagged with:
-
Hello, I am trying to create a simple chat application that works with steam. But every time i have the user login, the user has to enter his steamGuard code, even when the sentryfiles are being saved to the dataDirectory. my steam-user object is made as follows: this.options = { autoRelogin: true, promptSteamGuardCode: false };this.client = new SteamUser(this.options); I currently login using: this.client.logOn({"accountName": username,"password": pass,"rememberPassword": true}); I also tried the setSentry method before calling the logOn method. this.client.setSentry(fs.readFileSync(path));Where path is the location of the sentryFile, i can see the sentry.USERNAME.bin files in my appdata. I also tried logging in with the loginKey recieved from the rememberPassword option, with no success. How do i make the steamGuard a one-time only thing, like it is supposed to be? I am probably missing something very simple. I have tried steam-user 4.0.0-beta.4 and 3.29.2, both have the same effect. Thanks for the effort beforehand, Iron.