由于 Legacy REST API 和 Facebook 查询语言 (FQL) 在 8 月 7 日之后将不再可用,我正在寻找基于以下替代方案的 API Graph v2.6:
- https://api.facebook.com/method/links.getStats?urls=http://www.imdb.com/title/tt2015381/&format=json
- 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.imdb.com/title/ tt2015381/'
到目前为止,这是我的 v2.6 当前等效项:https://graph.facebook.com/v2.6/?id=YOUR_URL&fields=og_object{engagement},share{share_count}&access_token=YOUR_TOKEN
尽管如此og_object{engagement}
count
,并且share_count
似乎分别保持了一些总计数而不是喜欢和分享计数(请参阅:https ://developers.facebook.com/docs/graph-api/reference/v2 .6/网址)。
请问有人知道如何使用 API Graph v2.6 获取给定 URL 的 Facebook 分享、喜欢和评论计数吗?提前谢谢了!