Oleg Dats
Oleg Dats

Reputation: 4133

How to get people who have shared specific FB post?

It's easy to get people who have liked post: https://graph.facebook.com/19292868552_10150189643478553/likes
How can I get people who have shared this post ?

Upvotes: 1

Views: 1449

Answers (1)

DrBeza
DrBeza

Reputation: 2251

Using the Graph Explorer with a post that has shares:

https://graph.facebook.com/20531316728_10151733211311729?fields=shares

The output is:

{
  "shares": {
    "count": 1806
  },
  "id": "20531316728_10151733211311729",
  "created_time": "2013-02-10T12:59:25+0000"
}

Of course if you remove the fields parameter you see all the fields associated with that object.

EDIT: The post on Facebook - https://www.facebook.com/photo.php?fbid=10151733211231729&set=a.376995711728.190761.20531316728&type=1

Upvotes: 1

Related Questions