ElonMusk Posted August 11, 2022 Report Posted August 11, 2022 i have some code that logs into steam so one of my bots can accept a trade, first it gets the rsa key using a bots username then it encrypts a password and sends a request to dologin. i get the cookies back in the response however it is only steamauth, loginsecure, and steam country i get a 403 on trying to do pretty much anything because i have no session id how can i get one? i currently am using this: let sessionid = require('crypto').randomBytes(12).toString('hex'); and then pushing it to the array of cookies however i still get 403 is there a different way i should be doing it? Quote
Dr. McKay Posted August 11, 2022 Report Posted August 11, 2022 Sounds to me like you probably aren't properly sending your cookies in your requests. The sessionid cookie is just a CSRF token; it can be anything at all. 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.