Please can anyone explain how JARVEE and GMT2 work??
On GMT2, i don't know how the developer programmed, but clearly there are two steps: scrape users and then follow users. It seems GMT2 will scrape enough account that fit the setting, and then follow them one by one.
I never use jarvee, so maybe someone can explain how jarvee work.
Is there any differences between BOT operation and human operation?? Will instagram AI detect this difference?
Think about it like this. All apps run on a client, that could be either a browser from a desktop or a mobile client like an Android or iOS app.
Those clients almost always use HTTP(s) requests to talk to the server(like 99% of the time). That's all the server(in this case Instagram) will see from all the data coming from every client trying to connect to the backend services. So the clients eventually talk to the server via something called an API. These API's have basic things like rate limiting, access control listings(who can access , modify, or see certain info).
On these API's you can basically trigger a banned, blocked and/or rate limiting if you start sending HTTP(s) requests too fast. Some API's might have a way stronger anti-spam mechanism that basically uses AI.
On top of that, you also need to remember that most services are going to have things like throttle limits. Throttle limits are so common when developing API services that limit the amount of requests each session/client can do per minute/hour/day etc.
So to answer your question. Most people think of bot operations as automated done in a reckless manner with a very fast pace, as when it comes to manual they view it as the opposite one.
The main reason is because with manual, you are basically doing it with a human at a very slow pace, so you can't do it as fast as a dumb bot.
However, if you basically run your HTTP(s) requests slow enough and you don't leave any obvious footprints on your HTTP(s) requests then you should be fine.