node-globaloffensive icon indicating copy to clipboard operation
node-globaloffensive copied to clipboard

can't inspect url

Open mc23101 opened this issue 8 months ago • 7 comments

can't inspect url,Valve's servers didn't respond in time

mc23101 avatar Mar 13 '25 09:03 mc23101

same issue

vladdnepr avatar Mar 13 '25 14:03 vladdnepr

same issue

yes

say1j avatar Mar 13 '25 16:03 say1j

had this issue, swapped bots to shared_secret auth and started to work again

K1oSha avatar Mar 13 '25 17:03 K1oSha

had this issue, swapped bots to shared_secret auth and started to work again

can shared_secret auth slove this problem?

mc23101 avatar Mar 13 '25 17:03 mc23101

had this issue, swapped bots to shared_secret auth and started to work again

can you explain?

vladdnepr avatar Mar 14 '25 17:03 vladdnepr

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

K1oSha avatar Mar 14 '25 22:03 K1oSha

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

ElliotZeroNull avatar Mar 16 '25 09:03 ElliotZeroNull