我的问题对你来说可能很简单,但对我来说很难,因为我是 jquery 和 json 的新手。
此链接 https://graph.facebook.com/?ids=http://iphotogra.ph:4732/Images/ViewPhoto?photo_id=3538
将返回
{
"http://iphotogra.ph:4732/Images/ViewPhoto?photo_id=3538": {
"id": "http://iphotogra.ph:4732/Images/ViewPhoto?photo_id=3538",
"shares": 6,
"comments": 2
}
}
我的问题是,如何使用 jquery 访问共享和评论。
我试过这个
var link = "http://iphotogra.ph:4732/Images/ViewPhoto?photo_id=3538";
jQuery.getJSON('http://graph.facebook.com/?ids=' + link, function (data) {
console.log(data.shares);
});