node-globaloffensive
node-globaloffensive copied to clipboard
can't inspect url
can't inspect url,Valve's servers didn't respond in time
same issue
same issue
yes
had this issue, swapped bots to shared_secret auth and started to work again
had this issue, swapped bots to shared_secret auth and started to work again
can shared_secret auth slove this problem?
had this issue, swapped bots to shared_secret auth and started to work again
can you explain?
had this issue, swapped bots to shared_secret auth and started to work again
can you explain?
I use shared_secret value from maFile (Steam Mobile Guard) to generate TOTP code on login.
this.loginData = {
accountName: this.username,
password: this.password,
rememberPassword: true,
};
if (this.auth && this.auth !== '') {
// Check if it is a shared_secret
if (this.auth.length <= 5) this.loginData.authCode = this.auth;
else {
// Generate the code from the shared_secret
winston.debug(`${this.username} Generating TOTP Code from shared_secret`);
this.loginData.twoFactorCode = SteamTotp.getAuthCode(this.auth);
}
}
winston.debug(`${this.username} About to connect`);
this.steamClient.logOn(this.loginData);
Later i use this bot for inspecting items. Today evening 2 bots inspected 100 items in something like 10-15 seconds, without any issues. Each bot has their own proxy
had this issue, swapped bots to shared_secret auth and started to work again
can you explain?
I use shared_secret value from maFile (Steam Mobile Guard) to generate TOTP code on login.
this.loginData = { accountName: this.username, password: this.password, rememberPassword: true, };
if (this.auth && this.auth !== '') { // Check if it is a shared_secret if (this.auth.length <= 5) this.loginData.authCode = this.auth; else { // Generate the code from the shared_secret winston.debug(`${this.username} Generating TOTP Code from shared_secret`); this.loginData.twoFactorCode = SteamTotp.getAuthCode(this.auth); } } winston.debug(`${this.username} About to connect`); this.steamClient.logOn(this.loginData);Later i use this bot for inspecting items. Today evening 2 bots inspected 100 items in something like 10-15 seconds, without any issues. Each bot has their own proxy
It doesn't work for long and then timeouts again