facebook - Can we get the share count of a post in fb using graph api v2.3? -


i need shares count of particular post in fb uisng graph api. could'nt find method so. have followed link below.

https://developers.facebook.com/docs/graph-api/reference/v2.3/object/sharedposts

it returns data of shared posts in pagination format. there way total count of shares without fetching whole data , without paginating within data?

please suggest!!

just field shares should give number of shares post_id

[post_id]?fields=shares 

sample data feed

{   "shares": {     "count": 1   },    "id": "post_id",    "created_time": "2015-04-29t09:07:12+0000" } 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -