Advertisement
janter13

auto unfollow FB

Nov 26th, 2014
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. $token ="";
  3.  
  4. $tm = json_decode(file_get_contents('https://graph.facebook.com/me/subscribers?access_token='.$token),true);
  5.  
  6. for($i=0;$i<count($tm[data]);$i++){
  7. echo file_get_contents('https://graph.facebook.com/'.$tm[data][$i][id].'/subscribers?access_token='.$token.'&method=delete');
  8. }
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement