Facebook 分享计数不起作用 - 新 API?

Facebook share count not working - new API?

几天前,facebook 停止在图表中显示分享计数信息。当前如何下载以显示在 php 的页面上?

一直在输入这个link后,还有关于股数的信息,目前没有:https://graph.facebook.com/https://demotywatory.pl/4922745/Dziecko-nie-wie-ze-to-rzezba-po-prostu-chce-pomoc

我想在我的网站上显示此信息。怎么做?请帮忙

此信息现在在 URL 对象节点的 engagement 字段下提供。

https://developers.facebook.com/docs/graph-api/reference/v3.2/url

/?id={url}&fields=engagement

https://developers.facebook.com/tools/explorer?method=GET&path=%3Fid%3Dhttps%3A%2F%2Fdemotywatory.pl%2F4922745%2FDziecko-nie-wie-ze-to-rzezba-po-prostu-chce-pomoc%26fields%3Dengagement&version=v3.2

它与 facebook 的 app_id & app_secret 的工作方式如下所示。

https://graph.facebook.com/?id={URL}&fields=engagement&access_token={your-app_id}|{your-app_secret}

输出:

{
  "engagement": {
    "reaction_count": 5,
    "comment_count": 3,
    "share_count": 60,
    "comment_plugin_count": 0
  },
  "id": "https://www.testing.com"
}