1

很好,当您使用 PageID 并同时希望计算所有评论和点赞数时,url 的外观如何 我努力尝试

$feed_profile = $facebook->api('/'.$row[0].'/feed&access_token=$access_token&limit=500',"get");
$post_profile = $facebook->api('/'.$row[0].'/comments?access_token=$access_token&limit=500',"get");

也尝试过评论和而不是评论?

我不知道如何取回评论并且喜欢我必须做什么我的 var $row[0] 存储来自 fb 的各种页面

4

1 回答 1

0

提要有连接 EG:评论,提供计数的喜欢。


    $feed_profile = $facebook->api('/'.$row[0].'/feed&access_token=$access_token&limit=5',"get");
// get comment/like count for first post in array.  this can be done with a loop.
    echo 'Comments: '.$feed_profile[data][0][comments][count].'<br />';
    echo 'Likes:    '.$feed_profile[data][0][likes][count].'';

注意:您必须考虑错误处理,当没有评论或喜欢时,连接数组不存在

于 2012-05-16T14:16:53.657 回答