搜索了很长时间后,我得到了这个链接来获取详细信息link
https://graph.facebook.com/fql?q=SELECT url, normalized_url, share_count, like_count, comment_count, total_count, commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url='http://www.facebook.com/nokia'
现在这是我得到的输出:-
{
"data": [
{
"url": "http://www.facebook.com/nokia",
"normalized_url": "http://www.facebook.com/nokia",
"share_count": 1240,
"like_count": 8622386,
"comment_count": 287,
"total_count": 8623913,
"commentsbox_count": 2,
"comments_fbid": 404897301238,
"click_count": 10
}
]
}
经过进一步搜索,我无法从我可以理解如何使用其值的地方找到任何有价值的东西。
我向你解释如何。我有一个页面,其中有 10 个不同的链接,现在我想在那里显示总喜欢、评论和分享。我到达这里,但现在无法进一步移动。
我如何在该特定页面上使用 facebook 提供的数据?