Advertisement
fadhiilrachman

InstagramBot.gs

Aug 9th, 2016
847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Fadhiil Rachman made this
  2.  
  3. // Likes timeline photos/video content (ads will not liked)
  4. function IG_likesTimeline() {
  5.   var url = "https://api.fadhiilrachman.id/instagram/likesTimeline.php?",
  6.   opt = {
  7.     "method": "GET",
  8.     "payload": {
  9.     },
  10.     "muteHttpExceptions": true,
  11.     "followRedirects" : true,
  12.   };
  13.   // place USERNAME with your username and PASSWORD with your password account
  14.   UrlFetchApp.fetch(url + 'username=USERNAME&password=PASSWORD',opt);
  15. }
  16.  
  17. // Follow back who follow you
  18. function IG_followback() {
  19.   var url = "https://api.fadhiilrachman.id/instagram/followback.php?",
  20.   opt = {
  21.     "method": "GET",
  22.     "payload": {
  23.     },
  24.     "muteHttpExceptions": true,
  25.     "followRedirects" : true,
  26.   };
  27.   // place USERNAME with your username and PASSWORD with your password account
  28.   UrlFetchApp.fetch(url + 'username=USERNAME&password=PASSWORD',opt);
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement