Jump to content
McKay Development

SteamGuardMobile Error


Semi681

Recommended Posts

Hello together with a friend are planning to start your own roulette to CS: GO. However, I encountered one problem, when I turn on the bot, he can not log in to your account and shows an error SteamAuthorizationError. Does anyone know what could be wrong ? Secret code and identity code i checked a million times. What could be more wrong. http://m.imgur.com/Bfmjd3F,m4LiYIA

Link to comment
Share on other sites

  • 2 years later...

I need to see your code.

 

Hi, Dr. McKay,

 

I have the same problem. I downloaded Shared_secret from my Iphone. And I tried to use it in two factor authentication passing it to logOnOptions and I get error. 

> There was an error logging in! Error details: SteamGuardMobile

 
This is my code.
var SteamCommunity = require("steamcommunity");
var SteamTotp = require("steam-totp");
var steam = new SteamCommunity();

var twoFactorCode = SteamTotp.getAuthCode("redacted")
console.log(twoFactorCode)

var logOnOptions = {
"accountName": "user",
"password": "pasword",
"twoFactorCode": twoFactorCode
};

var identitySecret = ""; //get this in the intro!

//logs in via browser
steam.login(logOnOptions, function(err, sessionID, cookies, steamguard) {
if (err) {
console.log("There was an error logging in! Error details: " + err.message);
process.exit(1); //terminates program
} else {
console.log("Successfully logged in as " + logOnOptions.accountName);
}
steam.startConfirmationChecker(10000, identitySecret);
});

$ node test.js 
K2KF7
There was an error logging in! Error details: SteamGuardMobile

What can i do? Thank you!

Edited by Dr. McKay
Censored secret
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...