如何从FB API图3.1版获取comment_plugin_count

时间:2018-09-07 11:57:03

标签: json api

我使用fb图资源管理器来获得类似这样的信息:

{
  "engagement": {
    "comment_plugin_count": 6
  },
  "id": "http://www.example.com/path-to-url"
}

我的问题是,如何在我的网站上为“ span”元素添加评论数量?

FB说我应该使用以下代码:

FB.api(
  '/http://www.example.com/path-to-url',
  'GET',
  {"fields":"engagement{comment_plugin_count}"},
  function(response) {
      // Insert your code here
  }
);

但是我不熟悉JSON,不知道应该添加什么?

尝试过这样的事情: console.log("response: " + response.fields['engagement']);

谢谢

0 个答案:

没有答案