Find Number of Likes on Your Facebook Page with PHP

PHP code to find the number of likes on your facebook page.

Go to https://developers.facebook.com/

Login with your Facebook username and password

Create an app from that you will get App ID and App Secret.










Use both of them in the program.


PHP Code 

<?php

function Facebook_Page_Likes($id, $appid, $appsecret)
{
    $json_url = 'https://graph.facebook.com/' . $id . '?access_token=' . $appid . '|' . $appsecret . '&fields=fan_count';
    $json = file_get_contents($json_url);

    $json_output = json_decode($json);

    if ($json_output->fan_count) {
        return $fan_count = $json_output->fan_count;
    } else {
        return 0;
    }

}
echo 
Facebook_Page_Likes('XXXXX', 'APPID', 'APPSECRET');

?>

No comments:

Post a Comment

Labels

php (35) javascript (31) phpjavascript (30) jquery (23) html (20) mysql (14) database (9) codeigniter (4) json (4) bar chart (2) calendar (2) column chart (2) framework (2) google maps (2) query (2) tables (2) url (2) dropdown (1)

Popular Posts