Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Forked from ScottPhillips/fan_count.php
Created May 29, 2014 04:35
Show Gist options
  • Save INDIAN2020/96af8ef6cfbd892632c7 to your computer and use it in GitHub Desktop.
Save INDIAN2020/96af8ef6cfbd892632c7 to your computer and use it in GitHub Desktop.
<?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