How to get who and when a user shared a Facebook post

For my Facebook posts that my friends share (dislikes) I would like to get who shared it and when. Using the api chart, I can get information about a similar one or comments, as well as the number of times that a message was sent. What I'm looking for is an api chart call or a Facebook fql query for stocks that returns a result set like this:

data": [
      {
         "id": "user_id_1",
         "name": "Username 1",
         "created": "some date"
      },
      {
         "id": "user_id_2",
         "name": "Username 2",
         "created": "some other date"
      }
   ]
+5
source share
1 answer

I also searched for the exact thing for a long time. Since Facebook shows a list of users who shared this post, I expected the same to be available in the Graph API. But, unfortunately, nothing of the kind still exists.

, , Facebook , . , . , Facebook HTML , scrapper .

0

All Articles