📷 Instagram tools (creating accounts, login with those accounts and like/comment someone post)
-
Fork this repo
-
Add new features
-
Create a new pull request for this branch
- Put first version on GitHub
- Add feature for DM
modules/IAC.kt
-> File
val iac = IAC(true, true, "proxy", "username", "password", "email)
-> defining iac as IAC with parameters
Calling function for creating
iac.createAccount()
modules/Login.kt
-> File
val login = Login(true, true, "proxy", "username", "password")
-> defining login as Login with parameters
Calling function for creating
login.login()
modules/Like.kt
-> File
val like = Like("link to post")
-> defining like as Like with parameters
Calling function for creating
like.like()
modules/Comment.kt
-> File
val comment = Comment("link to post", "text")
-> defining comment as Comment with parameters
Calling function for creating
comment.comment()