T1MOXA Posted June 27, 2018 Report Posted June 27, 2018 The first time you log in to your account for some reason turns on Steam-Guard.Why is this happening and can it be avoided ?I'd like to keep my account unprotected. Quote
T1MOXA Posted June 27, 2018 Author Report Posted June 27, 2018 What I did:Register for an account.I authorize on the account without Steam-Guard using nodejs. (All OK.) Then I try to log on to another device using nodejs again.And steam for some reason begins to ask the code. Quote
Dr. McKay Posted June 27, 2018 Report Posted June 27, 2018 I don't believe it's currently possible from this module to disable Steam Guard entirely. Quote
T1MOXA Posted June 27, 2018 Author Report Posted June 27, 2018 The fact is that before using the module - the protection is disabled, and then for some reason it turns on by itself. Quote
T1MOXA Posted June 27, 2018 Author Report Posted June 27, 2018 (edited) By the way, if I understand correctly, one request is enough to disable. steam.on('webSession', (sessionID, cookies) => { let cookiejar = request.jar(); for (let arr of cookies) { cookiejar.setCookie(arr, 'https://store.steampowered.com'); } request({ method: 'POST', uri: 'https://store.steampowered.com/twofactor/manage_action' jar: cookiejar, simple: false, form: { action: 'actuallynone', sessionid: sessionID } }); }); Edited June 27, 2018 by T1MOXA Quote
Dr. McKay Posted June 27, 2018 Report Posted June 27, 2018 The fact is that before using the module - the protection is disabled, and then for some reason it turns on by itself. This is normal. Steam turns on Steam Guard automatically after you login via the client a few times. Quote
T1MOXA Posted June 27, 2018 Author Report Posted June 27, 2018 This is normal. Steam turns on Steam Guard automatically after you login via the client a few times.There's no way to avoid it ? 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.