php - How to get facebook shares count with facebook api
one text
Solution:
As CBroe mentions:
https://www.facebook.com/id/posts/post_id
is not how you access the actual post via API. You need to usepageid_postid
format. Andengagement
is for Open graph objects, for posts you need to look at theshares
field.
with ?fields=shares it's work
Source