iMacros + Instagram likes

kingkomarac

Registered Member
Joined
Nov 1, 2015
Messages
53
Reaction score
3
Hi there :)

I don't know how to make a script that likes pics that I want. Meaning I put in links and iMacros likes them one by one.
I usually know how to use iMacros, but I can't make this script by my own :(

Any1 can help plz?

Thanx..
 
good day. i can see you want imacro to loop through the links of users you have and then like them one by one. i prefer using imacro for most of my browser automation because direct firefox browser simulation.

i created a similar bot to like and comment at the same time. so since you just want it to like, i will give you the code for importing the links from text file or csv file.

you can use this code below. all you need to do is to change the name of the file that contains the instagram links to instagramlink that is at the first SET !DATASOURCE. don't know if the links is inside a text file or csv. if your links is inside a text file, then no need changing file extension but if it is a csv file, then change the file extension to csv. e.g

instagramlink.txt to instagramlink.csv

then add your imacro like code after the wait seconds 20.

note that you have to put the instagramlink file side imacro Datasource folder so it can detect the path.
if you have any issue, do let me know. cheers.

==========================================
Code:
TAB T=1
SET !LOOP 1
SET !DATASOURCE instagramlink.txt
SET !DATASOURCE_LINE {{!LOOP}}
WAIT SECONDS=2
URL GOTO={{!COL1}}
WAIT SECONDS=20
============================================
 

Attachments

No no no
Just no
Imacros is piece of crap
Just learn basic python + selenium and you can do way more.
 
good day. i can see you want imacro to loop through the links of users you have and then like them one by one. i prefer using imacro for most of my browser automation because direct firefox browser simulation.

i created a similar bot to like and comment at the same time. so since you just want it to like, i will give you the code for importing the links from text file or csv file.

you can use this code below. all you need to do is to change the name of the file that contains the instagram links to instagramlink that is at the first SET !DATASOURCE. don't know if the links is inside a text file or csv. if your links is inside a text file, then no need changing file extension but if it is a csv file, then change the file extension to csv. e.g

instagramlink.txt to instagramlink.csv

then add your imacro like code after the wait seconds 20.

note that you have to put the instagramlink file side imacro Datasource folder so it can detect the path.
if you have any issue, do let me know. cheers.

==========================================
Code:
TAB T=1
SET !LOOP 1
SET !DATASOURCE instagramlink.txt
SET !DATASOURCE_LINE {{!LOOP}}
WAIT SECONDS=2
URL GOTO={{!COL1}}
WAIT SECONDS=20
============================================
Holly crap :) I think this is it :)
I just don't understan what is last line for "WAIT SECONDS=20[/CODE]"

I'll try it out today.... Thanx a lot!!!!
 
No no no
Just no
Imacros is piece of crap
Just learn basic python + selenium and you can do way more.

This is really for simple thing!
I used python a long time ago and don't really have the will to learn again :)
 
I just don't understan what is last line for "WAIT SECONDS=20"
That's the time in seconds iMacros waits at the end of the macro. If you play it in loop, you'll have (a bit more than) 20 seconds between two loops, but it's always roughly the same. That's not too good honestly, you might want to switch to random wait time:
SET RANDOM EVAL("var randomNumber=Math.floor(Math.random()*45 + 20); randomNumber;")
WAIT SECONDS={{RANDOM}}

That macro only loops through the list though, it won't do the actual liking task.
 
good day. i can see you want imacro to loop through the links of users you have and then like them one by one. i prefer using imacro for most of my browser automation because direct firefox browser simulation.

i created a similar bot to like and comment at the same time. so since you just want it to like, i will give you the code for importing the links from text file or csv file.

you can use this code below. all you need to do is to change the name of the file that contains the instagram links to instagramlink that is at the first SET !DATASOURCE. don't know if the links is inside a text file or csv. if your links is inside a text file, then no need changing file extension but if it is a csv file, then change the file extension to csv. e.g

instagramlink.txt to instagramlink.csv

then add your imacro like code after the wait seconds 20.

note that you have to put the instagramlink file side imacro Datasource folder so it can detect the path.
if you have any issue, do let me know. cheers.

==========================================
Code:
TAB T=1
SET !LOOP 1
SET !DATASOURCE instagramlink.txt
SET !DATASOURCE_LINE {{!LOOP}}
WAIT SECONDS=2
URL GOTO={{!COL1}}
WAIT SECONDS=20
============================================


Great, thanx, and just one more question.
Where is Datasource folder ? :) Sorry for those questions....
 
That's the time in seconds iMacros waits at the end of the macro. If you play it in loop, you'll have (a bit more than) 20 seconds between two loops, but it's always roughly the same. That's not too good honestly, you might want to switch to random wait time:
SET RANDOM EVAL("var randomNumber=Math.floor(Math.random()*45 + 20); randomNumber;")
WAIT SECONDS={{RANDOM}}

That macro only loops through the list though, it won't do the actual liking task.

Oh I guess I found another problem....

RuntimeError: !DATASOURCE requires File IO interface, line: 3

I guess in free version I can't use this code, right?
 
Holly crap :) I think this is it :)
I just don't understan what is last line for "WAIT SECONDS=20[/CODE]"

I'll try it out today.... Thanx a lot!!!!
Imacro is still useful for some small task that would take hours to get done. Moreover is not everyone that have the time to learn programming .
No no no
Just no
Imacros is piece of crap
Just learn basic python + selenium and you can do way more.
Yeah python and selenium is cool but Imacro is still useful for some small task that would take hours to get done. Moreover it is not everyone that have the time to learn programming .I use imacro for most of my internet automation.

I used imacro to create a WhatsApp bulk sender, same imacro I used to create a Facebook auto group poster which I made for personal use.

So basically I use imacro for small task especially extraction. It is very helpful for small task especially for someone who doesn't know how to code.
 
Oh I guess I found another problem....

RuntimeError: !DATASOURCE requires File IO interface, line: 3

I guess in free version I can't use this code, right?
You are getting this error because you are using the updated version of imacro which they removed data source features. So download portable Firefox and install old version of imacro and you are good to go
 
Thanx, I finally did it :)

Here's the code I used from
gurusguru and tweked it ;)

TAB T=1
SET !LOOP 1
SET !DATASOURCE C:\Users\(me)\Desktop\insta.txt
SET !DATASOURCE_LINE {{!LOOP}}
WAIT SECONDS=2
URL GOTO={{!COL1}}
TAG POS=1 TYPE=BUTTON ATTR=CLASS:dCJp8<SP>afkep<SP>_0mzm-&&TXT:
WAIT SECONDS=2

And it works like a charm (firefox 33 and old iMacros)

Thanx a lot guys....
 
Thanx, I finally did it :)

Here's the code I used from
https://www.blackhatworld.com/members/gurusguru.1252239/ and tweked it ;)

TAB T=1
SET !LOOP 1
SET !DATASOURCE C:\Users\(me)\Desktop\insta.txt
SET !DATASOURCE_LINE {{!LOOP}}
WAIT SECONDS=2
URL GOTO={{!COL1}}
TAG POS=1 TYPE=BUTTON ATTR=CLASS:dCJp8<SP>afkep<SP>_0mzm-&&TXT:
WAIT SECONDS=2

And it works like a charm (firefox 33 and old iMacros)

Thanx a lot guys....
I am glad it works for you. Although you can instead use the data source folder inside imacro folder to store the files to extract from and then just use by stating insta.txt to import without going through the

c:\Users\(me)\Desktop\insta.txt

So basically you will use it like this

SET !DATASOURCE insta.txt
 
Yea that's perfect....
I am glad it works for you. Although you can instead use the data source folder inside imacro folder to store the files to extract from and then just use by stating insta.txt to import without going through the

c:\Users\(me)\Desktop\insta.txt

So basically you will use it like this

SET !DATASOURCE insta.txt

Yea great....
Is there a possibility to also follow latest people of some hashtags..... Like people that make latest posts or people that like latest posts..... Basically those would be people right now online and in same nishe...

Could anyone help please? I searched a lot and couldn't find anything that I could tweak

Thanx
 
Yea that's perfect....


Yea great....
Is there a possibility to also follow latest people of some hashtags..... Like people that make latest posts or people that like latest posts..... Basically those would be people right now online and in same nishe...

Could anyone help please? I searched a lot and couldn't find anything that I could tweak

Thanx
You have to search the hash tag and scrape the users using imacro .

You can not do that automatically since imacro is not an online script . so you have to search for the hash tag whenever you are online and then scrape the users to follow using imacro
 
This is great, but what if you run into private accounts? It errors out. Any solutions?
 
Then the solution to this is to add ignore error tag yes after it clicks the user post and also before it likes the post
 
If you already learned phyton you will be back in very soon
 
For those who dont know how to code and dont want to learn. I would suggest using web based Instagram Automation.

For me personally i recommend Wavlly because thats what i use.
They have a free trial for 3 days with all of the automation features you will ever need.

Auto Follow
Auto Comment
Auto Like
Auto DM
Auto Repost
Location Targetting
Hashtag Targetting

Best thing about the free trial is you can always sign up with another email and get another 3 days. Basically for a lifetime HAHA

But the only downside is that you would only be able to connect 1 Instagram Account :/
 
Back
Top