Advertisement
janter13

Auto Unlike FP FB

Oct 28th, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. $token = 'CAAAADBJGMPT....';
  4.  
  5. $data = json_decode(file_get_contents('https://graph.facebook.com/me/likes?limit=5000&access_token='.$token),true);
  6.  
  7. echo '<pre>';
  8. // print_r($data);
  9. echo '</pre>';
  10.  
  11.  
  12. for($i=0;$i<count($data[data]);$i++){
  13. echo file_get_contents('https://graph.facebook.com/'.$data[data][$i][id].'/likes?method=delete&access_token='.$token);
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement