各投稿のコメントといいねの数を含む Facebook ページの投稿を取得しようとしています。
好きな人には、渡すことができるパラメーターがあり、これはsummary = trueとtotal_countです。私はこれを試しました
page_id?fields=posts.limit(1).summary(1)
しかし、何も返ってきません。
FQLはもうすぐ非推奨になるので書けません。私はphp APIを書いています。
各投稿のコメントといいねの数を含む Facebook ページの投稿を取得しようとしています。
好きな人には、渡すことができるパラメーターがあり、これはsummary = trueとtotal_countです。私はこれを試しました
page_id?fields=posts.limit(1).summary(1)
しかし、何も返ってきません。
FQLはもうすぐ非推奨になるので書けません。私はphp APIを書いています。
次のような引数を渡すことで合計数を取得できます
?fields=likes.summary(1),comments.summary(1),
$fbtimeposts = (new FacebookRequest($session, 'GET', "/me/feed?fields=likes.summary(1),comments.summary(1),story,link,comments,likes,source,picture,type,status_type,application,message,message_tags,name,caption,actions,from,feed_targeting,full_picture,description,updated_time,created_time,id,object_id,parent_id,place,story_tags,targeting,with_tags&limit=10&date_format=U&limit=10&date_format=U"))->execute()->getGraphObject()->asArray();
上記の例が何らかの形で役立つことを願っています!!!!