McMuffinDK Posted March 31, 2018 Report Posted March 31, 2018 Is it possible to parse the steamguard auth code in a variable? Quote
TomYoki Posted March 31, 2018 Report Posted March 31, 2018 You could do something like let auth; setInterval(() => { auth = SteamTotpOrWhateverYouUseToGenerateAuthCodes(shared_secret); }, 1000 * 10); //Refresh code every 10 seconds; (If that's what you're attempting to accomplish) Quote
McMuffinDK Posted March 31, 2018 Author Report Posted March 31, 2018 It is not, I was thinking of something like this: client.logOn({ "accountName": username, "password": password, "auth": steamGuardCode }); Quote
McMuffinDK Posted April 8, 2018 Author Report Posted April 8, 2018 McKay is this even possible? Quote
Blue Posted April 9, 2018 Report Posted April 9, 2018 (edited) For Steam Mobile Auth: client.logOn({ "accountName": username, "password": password, "twoFactorCode": steamGuardCode //Steam Guard Code Generated by steam-totp });For Steam Guard email code: client.logOn({ "accountName": username, "password": password, "authCode": code //Get somehow the code sended to your email, and put it here });You can see more detailed information HERE Edited April 9, 2018 by Blue Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.