Iconosquare Like iMacro

frosty47

Newbie
Joined
Oct 5, 2015
Messages
4
Reaction score
0
Hello all,
I'm new to this community and I'm in need of help.
I am trying to write a simple macro to like pictures of a # on Iconosquare.
My issue is that when I try to make the script, it gives a unique ID for that user's picture instead of liking the first, second, third post on the page.

When I record a like, this is the output:

TAG POS=1 TYPE=A ATTR=ID:like-1089435201248215081_1278188375


This is the tag of the like button on the page

<a href="javascript:void(0)" id="like-1089435201248215081_1278188375" class="ss-heart like_picto_unselected likeAction"></a>

Any help on how to write it correctly?
 
Last edited:
Hello all,
I'm new to this community and I'm in need of help.
I am trying to write a simple macro to like pictures of a # on Iconosquare.
My issue is that when I try to make the script, it gives a unique ID for that user's picture instead of liking the first, second, third post on the page.

When I record a like, this is the output:

TAG POS=1 TYPE=A ATTR=ID:like-1089435201248215081_1278188375


This is the tag of the like button on the page

<a href="javascript:void(0)" id="like-1089435201248215081_1278188375" class="ss-heart like_picto_unselected likeAction"></a>

Any help on how to write it correctly?


Im running into this as well. did you manage to sort it out?
 
Usually, a wildcard like an asterisk would do the trick.
But something weird is happening to imacros, I can't record any comment imacro without trouble. May be time for update.
 
Don't know if this helps but i'm using this to like the first found picture that is not liked yet
TAG POS=1 TYPE=A ATTR=ID:like-*&&CLASS:like_picto_unselected*

so if you want to like 4 picture for example just put a while loop around it and repeat the line above 4 times.

Hope it helps
 
Don't know if this helps but i'm using this to like the first found picture that is not liked yet
TAG POS=1 TYPE=A ATTR=ID:like-*&&CLASS:like_picto_unselected*

so if you want to like 4 picture for example just put a while loop around it and repeat the line above 4 times.

Hope it helps


Yeah it seems to have solved the proble. amazing stuff, thanks bud:)

Now its time to redo the macros then go and study up on them a bit...

scholl...you da real MVP
 
I'm using it for a couple months now, not banned yet, why should it result in automatic bans?
 
I thought imacros were dead as in they result in automatic bans?

Its like any other bot or program, they all could result in a block or a ban if not used properly. As with all of them you basically have to watch out for two things: timing the delay between the actions performed right while remaining within the IG limits /hour or day and to not really perform any other actions on a phone on the same account as thatll trigger a captcha most of the time

I just had my macros running for 3 days straight 24/7 and had no problem. I reckon it could be left runnin non stop but its good to turn it off for a bit every now and then
 
Don't know if this helps but i'm using this to like the first found picture that is not liked yet
TAG POS=1 TYPE=A ATTR=ID:like-*&&CLASS:like_picto_unselected*

so if you want to like 4 picture for example just put a while loop around it and repeat the line above 4 times.

Hope it helps

If I'm understanding correctly, the above will like only photos with zero likes within a hashtag? What's the delay set on this? Thanks!!!
 
Back
Top