如何在PHP中获取Facebook建议计数

问题描述

| 任何人都可以帮助如何在PHP中获得Facebook推荐的计数。 我搜索facebook api,但没有找到任何东西。 提前致谢。     

解决方法

        推荐是一个赞。您可以在like按钮的参考中看到它:   
action
-在按钮上显示的动词。选项:\'like \',\'recommend \' 要获取URL(此处为
http://stackoverflow.com
)的计数,可以进行FQL调用:
 SELECT url,share_count,like_count,comment_count,total_count
 FROM link_stat WHERE url=\"http://stackoverflow.com\"
直接致电
$fql = \'SELECT url,total_count
        FROM link_stat WHERE url=\"http://stackoverflow.com\"\';
$json = file_get_contents(\'https://api.facebook.com/method/fql.query?format=json&query=\' . urlencode($fql));
$json
将包含:
[
    {
        \"url\"           : \"http://stackoverflow.com\",\"share_count\"   : 1353,\"like_count\"    : 332,\"comment_count\" : 538,\"total_count\"   : 2223
    }
]
你在这里:
share_count
:URL的股份计数
like_count
:点赞次数(=推荐)
comment_count
:该链接分享下方Facebook中的评论数量
total_count
:论文总数3 您可以使用
json_decode
在PHP中阅读json:
$data = json_decode($json);
echo  $data[0]->like_count;
使用Facebook PHP SDK 编辑:正如Rufinus指出的那样,出于稳定性原因,如果您是一个长期项目,而不仅仅是一个快速实验,那么您应该使用Facebook PHP SDK(请参阅github)进行FQL查询:越来越多的公众对其API的封闭访问(无访问令牌读取)(请参阅Facebook开发者博客上的此博客文章)。即使这些查询与任何用户都不相关,SDK仍在使用该应用访问令牌进行查询。
require \"facebook.php\";
$facebook = new Facebook(array(
    \'appId\'  => YOUR_APP_ID,\'secret\' => YOUR_APP_SECRET,));

$fql = \'SELECT url,click_count,total_count 
        FROM link_stat WHERE url=\"http://stackoverflow.com\"\';

$result = $facebook->api(array(
    \'method\' => \'fql.query\',\'query\' => $fql,));
$result
数组包含您需要的内容(
like_count
字段),甚至更多:
Array (
    [0] => Array (
        [url] => http://stackoverflow.com
        [share_count] => 1356
        [like_count] => 332
        [comment_count] => 538
        [click_count] => 91
        [total_count] => 2226
    )
)
    ,        您必须为此使用FQL。
<?php
require_once(\'../library/Facebook.php\');
$facebook = new Facebook(array(
    \'appId\'  => \'123456789000000\',\'secret\' => \'asdf\',\'cookie\' => true,));
$result = $facebook->api(array(
    \'method\' => \'fql.query\',\'query\' => \'select like_count,total_count,click_count from link_stat where url=\"http://<url>\";\'
));
echo $result[0][\'total_count\'];
?>
另请参见http://www.cwd.at/2011/04/facebook-tipp-anzahl-der-fans-die-eine-fan-page-liken/。 编辑:请参阅http://facebook.cwd.at/so.php 有关在注释中提到的url的工作示例。 (使用none SDK代码段)     ,        要仅查看共享,您可以查看/使用http://graph.facebook.com/http://yourdomain.com 例如:http://graph.facebook.com/http://www.apple.com/ipod