Skip to content

Instantly share code, notes, and snippets.

@ScottPhillips
Created January 4, 2012 07:12
Show Gist options
  • Save ScottPhillips/1558910 to your computer and use it in GitHub Desktop.
Save ScottPhillips/1558910 to your computer and use it in GitHub Desktop.
Faceboook SDK PHP : Get Number of Fans
<?php
require('facebook.php');
$facebook = new Facebook(array(
'appId' => 'YOUR_APP_ID',
'secret' => 'YOUR_APP_SECRET',
));
$cokeFans = $facebook->api('/cocacola');
echo 'Coke is good, it has ' . $cokeFans['fan_count'] . ' fans!';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment