Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $token = "letak token";
- $curl = curl_init("https://graph.facebook.com/v2.9/search?q=anime+indonesia&fields=id&type=group&limit=20&access_token=".$token);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_TIMEOUT, 5);
- $cr = curl_exec($curl);
- curl_close($curl);
- $dta = json_decode($cr)->data;
- foreach($dta as $d)
- {
- echo $d->id;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment