Advertisement
Guest User

pfft

a guest
Aug 26th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function deleteKomen(access_token) {
  2.   var mystatus = cURL('https://graph.facebook.com/me/feed?fields=' + encodeURIComponent('id,application{id}') + '&limit=5&access_token=' + access_token);
  3.     for (i in mystatus['data']) {
  4.     var komen = cURL('https://graph.facebook.com/' + mystatus['data'][i]['id'] + '/comments?fields='+ encodeURIComponent('id') +'&access_token=' + access_token);
  5.           for (x in komen['data']) {
  6.             cURL('https://graph.facebook.com/' + komen['data'][x]['id'] + '?method=delete&access_token=' + access_token);
  7.           }
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement