Step 1 – Get API Key, Application Secret & Page ID
These are the three mandatory information you’ll need to get things started.
API Key and Application Secret
- Sign in to your Facebook and click on Developer‘s link on the site bar. (If you don’t have a Developer’s account, you will have to sign up for one first)
- Click "Set Up New Application". Enter any application name, agree to the Facebook terms and click "Create Application". Note: We are not going to create a real application, but we’ll need to go through these processes to get a API Key and Application Secret.
- On the next page, you should be able to see your personal API Key and Application Secret. Copy it down somewhere or leave the browser window open.
Page ID
Page ID is the ID of your Facebook Fan Page. If you don’t have a Facebook Fan page, you’ll have to first create one. To get the ID of your Fan page, click edit page, and look for your ID (numbers) at the end of the URL – http://www.facebook.com/pages/edit/?id=XXXXXXXXX
Step 2 – Get Facebook.php
You’ll also need the Facebook API PHP SDK file called Facebook.php
. Download it, and place it in the root of your folder. Learn more about Facebook PHP SDK.
Step 3 – Display Fancount
To show off your fancount, place the following code in your php file,
<?php
require_once('facebook.php');
$facebook = new Facebook(array(
'appId' => 'app_id',
'secret' => 'secret_key',
'cookie' => true,
));
$result = $facebook->api(array(
'method' => 'fql.query',
'query' => 'select fan_count from page where page_id = page_id;'
));
$fb_fans = $result[0]['fan_count'];
?>
Link to get codes
And then you will want to edit the codes to change the following:
Line 4 – Replace app_id with your Facebook Application ID.
Line 5 – Replace secret_key with Secret.
Line 10 – Replace the last page_id with your Facebook Fanpage ID.
<?php echo $fb_fans; ?>
Please refer to Step 1 on how to get app_id, secret_key and page_id.
To display the fancount, insert this following code anywhere in the page:
********************************************
Source : http://www.hongkiat.com/blog/how-to-display-facebook-fan-count-in-text/
********************************************
Comments
Post a Comment