1
https://developers.facebook.com/docs/graph-api/reference/v2.8/object/likesは、FacebookのAPIのV2.8
TOTAL_COUNTプロパティに好きです。これは、フラグsummary = trueが設定されている場合にのみ返されます。
私は、私は以下のFBノードモジュールに
を使用しています=ここで要約を設定するにはtrue
を疑問に思ってあなたがPage
オブジェクトのfan_count
フィールドを使用することができます私のコードスニペット
FB.api('xxxxx', {
fields: ['id', 'name', 'likes', 'checkins', 'talking_about_count'],
access_token: accessToken
}, function(res) {
console.log(res);
});
[Facebookページメンバー/好きな取得方法をグラフAPI](https://stackoverflow.com/questions/14632000/graph-api-how-の可能な複製を参照してください。 get-facebook-page-members-likes) –