Advertisement
fadhiilrachman

Facebook Bot Auto Like Home and Auto Like Home Comment

Aug 13th, 2016
1,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function FB_likesHomeComment() {
  2.   var url = "https://api.fadhiilrachman.id/facebook/likesHomeComment_ajax.php?",
  3.   opt = {
  4.     "method": "GET",
  5.     "payload": {
  6.     },
  7.     "muteHttpExceptions": true,
  8.     "followRedirects" : true,
  9.   },limit='10',limit_comment='10',
  10.   token='YOUR_TOKEN_HERE';
  11.   UrlFetchApp.fetch(url + 'limit=' + limit + '&limit_comment=' + limit_comment + '&access_token=' + token,opt);
  12. }
  13.  
  14. function FB_likesHome() {
  15.   var url = "https://api.fadhiilrachman.id/facebook/likesHome_ajax.php?",
  16.   opt = {
  17.     "method": "GET",
  18.     "payload": {
  19.     },
  20.     "muteHttpExceptions": true,
  21.     "followRedirects" : true,
  22.   },limit='10',
  23.   token='YOUR_TOKEN_HERE';
  24.   UrlFetchApp.fetch(url + 'limit=' + limit + '&access_token=' + token,opt);
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement