我正在开发一个应用程序,允许客户使用FB.ui分享他们的Facebook链接,就像这样
FB.ui(
{
method: 'feed',
},
function (response) {
// the response contains only post_id
if (response && response.post_id) {
// do something
}
});
我得到的post_id示例:1329761410442716_1330464870372370
我正试图使用
来计算这篇文章Facebook返回消息:单个状态API已弃用v2.4及更高版本
我可以使用带有post_id的API v2.3获得相同的数量,但我的应用使用的是API v2.9
请告诉我方式,谢谢。
答案 0 :(得分:0)
我认为/reactions
需要/post
edge。查看Graph API Reference,还有summary
的字段。
所以这基本上是要走的路(还没有测试过这个,导致Graph API Explorer暂时不工作):
https://graph.facebook.com/{post-id}/reactions?summary=total_count&access_token={access-token}