scripting ig follow/unfollow on one account

JBrewster

Junior Member
Joined
Apr 24, 2020
Messages
188
Reaction score
19
Hi members

I use iMacros for several scripts on ig including mass canceling pending requests. I however have not found a script that can do a F/U on one singl account

For example:

I go on X Account I follow it then unfollow it with maybe 0 seconds in between, I want to keep doing this repeatedly many times.

Thanks for all inputs
 
You need wait 8-12 hours to let someone follow you back.
 
You need wait 8-12 hours to let someone follow you back.

If you are saying this in regards to IG algorithims, Im not concerned about it right now. The reason why I am asking for this script is to test something out.
 
So, you want a javascript script to simply follow/unfollow the same user within x seconds?
 
So, you want a javascript script to simply follow/unfollow the same user within x seconds?
Exactly
Im hoping I can get a script for iMacros specifically but not possible then thats fine to
 
Try this piece of code

setInterval(function(){
document.getElementsByClassName("vBF20 _1OSdk")[0].click();
}, 3000);
 
Try this piece of code

setInterval(function(){
document.getElementsByClassName("vBF20 _1OSdk")[0].click();
}, 3000);

This is the message I got:
SyntaxError: can not parse macro line 1: setInterval(function){
 
Because that is javascript code. Open console of browser, paste that code and check if it works.
 
Back
Top