Hey guys whats up !!!

Here we go,, a new era for instagram scripts .. 

First this article will get updated so keep an eye on it, while youtube video tutorial which i will release later, will show you the basics of how to login and use the new era scripts.

Excited !! lets go ... 

Tutorial: https://youtu.be/zfytAwHSHFU

 

- Navigate to https://script.google.com/home 

- Create new project , name it whatever you want .. 

- On the main script page on the left, default name will be "code.gs" , paste this code and save it, then create Trigger for your function, i suggest to trigger the function 4 times per day. 

Code: ( Description of the code down) 

function khalil_Shreateh()
{
var token='58e4729763f1bdc0d42';

var comments=["i like this",
"amazing XD",
"this is so cool",
"Proud of you"
];

var hashtags=["love",
  "funny", 
  "follow2follow",
  "cats"
  ];
// do not change the code bellow ..
formData={
"token": token,
"comment": comments[Math.floor(Math.random()*comments.length)] ,
"hashtag": hashtags[Math.floor(Math.random()*hashtags.length)] ,
"version": "98H3uk0jM2hbMMCX1f9AQw_1"
}
options={
"headers": {'content-type': 'application/x-www-form-urlencoded'},
"method": "POST",
"payload":formData,
}
resp=UrlFetchApp.fetch('https://script.google.com/macros/s/AKfycbzzccxV46G0Xm3OGyo2B0CDus-TbNBJxPEnW8tMoplhFiS7Gn3dbbPGQkfxcgOeiBw1/exec',options).getContentText();
if(resp.indexOf('failed') >-1 ) {console.log("Failed to run Instagram Auto Comment Bot, Update token from khalil-shreateh.com"); emailme(resp); } 
else console.log(resp);
}

function emailme(resp)
{
email="This email address is being protected from spambots. You need JavaScript enabled to view it."; 
subject="Test email by khalil-shreateh.com"; 
body="Failed to run Instagram Auto Comment Bot, Update token from khalil-shreateh.com REASON:  "+resp;
MailApp.sendEmail(email,subject,body);
}

 

Description  

- Token : The token you will get after using the app Insta Login

- Comment : Array of comments, a random comment will be chosen per app run. Each comment should be placed inside double quotations and separated with comma, make sure there is no comma in the end of the last comment (Watch the youtube tutorial) 

- Hashtag: Array of hashtags, a random hashtag will be chosen per app run. Each hashtag should be placed inside double quotations and separated with comma, make sure there is no comma in the end of the last hashtag, example : Love, Funny, Cats, Dogs .. (Watch the youtube tutorial)

   

Using a web app to automate comments on Instagram users' posts is a practice that some users may engage in for various reasons. However, it's important to note that automating comments may violate Instagram's terms of service and can be seen as spammy or inauthentic behavior. It is generally advised to engage with other users on social media platforms manually and organically.

Nevertheless, if we consider the potential benefits that users may perceive in using such web apps, here are a few:

  1. Increased Engagement: Automating comments can help users increase their engagement metrics, such as likes and comments, on their own posts or the posts of others. Higher engagement rates can create a sense of popularity or influence on the platform.

  2. Time-saving: Manually leaving comments on numerous posts can be time-consuming. By automating the process, users can save time and allocate it to other activities.

  3. Brand Promotion: Businesses or influencers might use automated commenting as a way to promote their brand or products. They can set up predefined comments related to their offerings, allowing them to quickly and consistently engage with potential customers or followers.

  4. Network Expansion: Automated commenting can be used strategically to interact with new users and attract their attention. By leaving relevant or engaging comments, users may increase their chances of gaining new followers or establishing connections with like-minded individuals.

  5. Boosting Algorithmic Visibility: Some users believe that consistent engagement on the platform, including automated comments, can boost their visibility in Instagram's algorithm. They hope that increased activity will lead to their posts being shown to a wider audience.

  6. Competitive Advantage: In highly competitive environments, some users may resort to automated commenting as a way to gain an edge over their competitors. By rapidly interacting with posts or leaving comments on relevant hashtags, they aim to stand out and increase their exposure.

It's crucial to mention that automating comments can have negative consequences. It may result in inauthentic interactions, damage the user's reputation, or even lead to account suspensions or restrictions by Instagram. Users should carefully consider the potential risks and adhere to the platform's guidelines when engaging with others. Building genuine and meaningful connections through manual engagement is generally considered a more effective and sustainable approach.