tobitaz

token

May 23rd, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. $token = "letak token";
  6.  
  7.  
  8.  
  9.  
  10. $curl = curl_init("https://graph.facebook.com/v2.9/search?q=anime+indonesia&fields=id&type=group&limit=20&access_token=".$token);
  11. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  12. curl_setopt($curl, CURLOPT_TIMEOUT, 5);
  13. $cr = curl_exec($curl);
  14. curl_close($curl);
  15.  
  16.  
  17.  
  18.  
  19. $dta = json_decode($cr)->data;
  20.  
  21.  
  22.  
  23.  
  24. foreach($dta as $d)
  25. {
  26. echo $d->id;
  27. }
  28.  
  29.  
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment