hexagonal
Senior Member
- Apr 17, 2022
- 819
- 883
What were you promoting with so many fake accounts ?
My software dev agency, each account was setup to look legit for that niche.
What were you promoting with so many fake accounts ?
Hi! I'm not interested on selling anything at the moment, I could give you free consultation on what you're building so you don't get overcharged or end up making things more complex.do you sell your services? I'm interested in purchasing.

Can i use the free trial subscription of "Dolphin-anti" on more than one device at same time using the Same internet connection ?
I'm on PC and i already bought 10 headless PC for cheap.For IG you can use 5-10 accounts per IP, device just rotate it
https://www.whatismybrowser.com/guides/the-latest-user-agent/android
I'm on PC and i already bought 10 headless PC for cheap.
I can't dm you.Send me a DM with what you bought never heard about it tbh.
Hi, first of all, I wish you good luck. Second, some advice, I have been automating insta for a while and working with clients, I left that to do spoty automation now.
The main complication that made me switch and probably you will have to deal with is IG rule differences between browser and mobile app.
The browser navigation is really strict to a point that automation is not efficient because you can send from 100 to 200 DMs/day from the app but on browser it´s hard to go farther than 50 per day.
The automation from browser is easy as you can use just selenium, however, things get harder if you want to emulate phone.
You need to use appium combined with android studio and a mobile OS image.
The problem is that the available images for virtual emulation are well known and Instagram can detect the blue print of all of them so you will need to use a custom one if you really want a quality bot.
Making a custom android is crazy, the open source code contains only 70% of the finished code required to run an OS, so you better use one OS that is ready to go, and modify parts of the code to change it´s blueprint.
I will keep an eye on this thread, feel free to ask any questions!
Cheers!
How do you made automation for real smartphone? Did you use adb? Appium?Hi, first of all, I wish you good luck. Second, some advice, I have been automating insta for a while and working with clients, I left that to do spoty automation now.
The main complication that made me switch and probably you will have to deal with is IG rule differences between browser and mobile app.
The browser navigation is really strict to a point that automation is not efficient because you can send from 100 to 200 DMs/day from the app but on browser it´s hard to go farther than 50 per day.
The automation from browser is easy as you can use just selenium, however, things get harder if you want to emulate phone.
You need to use appium combined with android studio and a mobile OS image.
The problem is that the available images for virtual emulation are well known and Instagram can detect the blue print of all of them so you will need to use a custom one if you really want a quality bot.
Making a custom android is crazy, the open source code contains only 70% of the finished code required to run an OS, so you better use one OS that is ready to go, and modify parts of the code to change it´s blueprint.
I will keep an eye on this thread, feel free to ask any questions!
Cheers!
What you mention of an endless fight with using selenium automation was my experience a couple of years ago when I had the software working fine.Hello!
I moved from puppeeter to reverse engineering the requests, took me a few hours as already had experience with it, you don't want to emulate phones as it requires a ton of memory to run them and a single change will break the whole process.
Saw a team trying to use selenium to automate ecommerce purchases and it was an endless fight, everyday you had something new broken or something needing manual input even tried with real devices in USA and it didn't make any sense it was a waste of money not sure if they have changed recently.
I already did reverse engineering on android app still trying iOS
Here's the guide to use proxyman to intercept android requests
https://www.alexschnabl.com/blog/articles/using-proxyman-to-reverse-engineer-the-instagram-private-api
Using IOS will need this as a guide
https://github.com/merdw/iOS-Instagram-SSL-Pinning-Bypass
I never ended up doing that, but I did some testing with Android Studio + adb + appium and it´s doable. Then I switched to a project that I thought it was more profitable.How do you made automation for real smartphone? Did you use adb? Appium?
Congrats! That was really fast!Update
Done
- Reached 4k DMS per day
- Research account creation to cut more costs
- Reduced ban rate of accounts
To be done
- Make own proxies
- Add multithreading to send 10k DMS per hour
- Reduce more the ban rate
- Invest 1k into accounts and proxies once I get a lower ban rate
What you mention of an endless fight with using selenium automation was my experience a couple of years ago when I had the software working fine.
Instagram changed something every week or every 2 days, on the other hand the fixes to adapt our software where easy to do, just annoying, but when you are selling the services of the software, you take it as a maintenance job.
You are right about the downs of emulating phones.
I didn´t try reverse engineering the app because I thought that that would be a really difficult task. (also because I never did that so I am unexperienced).
I was assuming that the API requests from the Instagram app would have some type of header encrypted to make Instagram know if they come from the real app.
Is it not like that?
Is it easy to fake the requests and make Instagram believe that they are coming from the app?
Seeing that it works I will give it a try in 1 month (now I am focused in automating for Spotify).
Thanks a lot for the guides you posted, I will read them all and comment on them, this is really valuable info.