得到像一个特定的Facebook页面

时间:2014-08-20 09:59:21

标签: php facebook-graph-api facebook-fql

我在Facebook上有Page Id“252079588308065”。我只想使用图形API或FQL获得此页面的喜欢数量。

是否可以获得特定页面的数量。

请给我一个解决方案

1 个答案:

答案 0 :(得分:0)

这是一种使用Graph API获得类似计数的方法。

<?php
//The following code returns the Number of likes for any facebook page.

//Page Id of TechRecite.com. Replace it with your page.
$page_id = "138564926335348"; 
$likes = 0; //Initialize the count

//Construct a Facebook URL
$json_url ='https://graph.facebook.com/'.$page_id.'';
$json = file_get_contents($json_url);
$json_output = json_decode($json);

//Extract the likes count from the JSON object
if($json_output->likes){
    $likes = $json_output->likes;
}
//Printing the count
echo 'TechRecite.com has '.$likes.' Facebook Fans';
?>

来源:http://www.techrecite.com/get-facebook-likes-count-of-a-page-using-graph-api/