Facebook Graph API:喜欢和共享字段始终相等

时间:2016-09-05 08:19:11

标签: facebook facebook-graph-api

请考虑以下Graph API请求有关某些网址的信息:

https://graph.facebook.com/?id=http://www.cnn.com/2016/09/05/asia/north-korea-ballistic-missiles/index.html&fields=og_object%7Bengagement%7Bcount%7D%7D%2Cshare&access_token=<your_access_token>

以下是此请求的结果:

{
   "og_object": {
      "engagement": {
         "count": 1319
      },
      "id": "1374876959196857"
   },
   "share": {
      "comment_count": 0,
      "share_count": 1319
   },
   "id": "http://www.cnn.com/2016/09/05/asia/north-korea-ballistic-missiles/index.html"
}

您可以看到og_object.engagement.count = 1319,share.share_count也是如此! 这并非巧合,因为每个网址都会发生这种情况。

这个数字(在我们的例子中是1319)实际上是喜欢计数,所以share.share_count显然是错误的。

为什么这样以及如何获得真正的股票?

由于

0 个答案:

没有答案