So for past week I was doing program that can automate user actions by sending requests. And I think I have done well automatic doing stuff what I wanted the program to do. But I was wondering why am I getting so many bans. And today I think I found the cause of it. Every action in game have its own auth (sent in header). And I thought each server was separate. Because in POST headers I need to send user_id and game_session_id... BUT I was wrong It really is separate, but between each account not server.
I was doing it like
So now i know it doesn't work. Because actions like Login to account are the same on each server, each account. But everything is changing after making account/logging to another account. So of course I don't want to copy - paste all the authenticators for each account. I want do make the program find it by itself and save it to variable.
I was looking in chrome dev tools / network. I searched for it in post methods responses, get method headers. But didnt find anything about "auth" etc.
And there's my question for you. Is it possible to get these "auth"s from website? How can I do it?
There was several bots in this game so I think it should be able to do without having acces to admin database.
All of course in Javascript.