How to get most popular posts on facebook page using graphical API
I wanted to get the most popular posts on a facebook page using the Graph API. I tried https://graph.facebook.com/%pageId%/posts but with this API I get the latest posts from the page. I wanted to filter the result using the most popular posts (i.e. Most Common, Favorite, and Comments). Can any body help me learn how to get popular posts on a page using the graphical API.
Thank you, Shiv.
source to share
You cannot get popular posts directly from the Facebook Graph API. You can receive posts using the Graph API (/ {page-id} / posts) , then count the likes, generals, or comments of the post yourself (/ {post-id} / likes, / {post-id} / comments, / {post -id} / sharedposts) and then sorts all posts.
Literature:
1. https://developers.facebook.com/docs/graph-api/reference/v2.3/object/comments 2. https://developers.facebook.com/docs/graph-api/reference/v2.3 / object / likes 3.https : //developers.facebook.com/docs/graph-api/reference/v2.3/object/sharedposts
source to share