Get facebook posts and total count of likes for ea

2019-06-19 02:54发布

问题:

I am trying to get a fb page posts with count of comments and likes for each post.

For likes there is a parameters I can pass which is summary = true and total_count . I tried this page_id?fields=posts.limit(1).summary(1) but nothing comes back. I can not write FQL as it will be depricated soon. I am writing php API.

Thanks in advance.

Answer :

page_id?fields=posts.limit(40){likes.limit(1).summary(1),comments.limit(1).summary(1)}

Because I don't need any comments but only summary I set comments.limit(1), same for likes.

Thanks for your help!

回答1:

You can get total count by passing arguments like

?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();  

I hope above example helps you in someway!!!!



回答2:

You can try this

?fields=likes.limit(0).summary(1),comments.limit(0).summary(1)

?fields=likes.limit(0).summary(true),comments.limit(0).summary(true)