我使用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
']);
谢谢