gud Posted October 12, 2023 Report Posted October 12, 2023 (edited) Hello! I am trying to use proxies to log in using the node package, but I am getting some errors. Errors: The account name or password that you have entered is incorrect. Here is my code atm: const logOnOptions = { accountName: account.split(":")[0], password: account.split(":")[1] }; const proxySplit = proxies[currentProxyIndex].split(":"); const proxyIp = proxySplit[0]; const proxyPort = proxySplit[1]; const proxyUser = proxySplit[2]; const proxyPass = proxySplit[3]; const proxy = request.defaults({ 'proxy': `http://${proxyUser}:${proxyPass}@${proxyIp}:${proxyPort}` }) as any; // @ts-ignore const community = new SteamCommunity({ request: proxy }); community.login({ "accountName": logOnOptions.accountName, "password": logOnOptions.password }, (err, sessionID, cookies, steamguard, oAuthToken) => { if (err) { console.log(`[ERROR] ${logOnOptions.accountName} failed to login | ${err}`); } }); What am I doing wrong? Edit: Ok, I figured out that I was using only 1 proxy ip for all of them. But I still got an error for "The account name or password that you have entered is incorrect." It works fine if I simplify down everything and enter the details manually in the strings accountName and password. Edited October 13, 2023 by gud Updated errors and post 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.