Get the posts you like on Facebook?

Given an authenticated user, can I find the posts I like on Facebook?

I read about “stories” and “recent activities,” but I can't figure out how to get this data for a specific user. Any help is appreciated!

Thank!!

+5
source share
1 answer

I hope this will be helpful. There is only one way in the official FB SDK with Graph Api v2.1 (since fql is no longer available in 2.1) - for each message you must send a request to https://graph.facebook.com/v2.1/{post-id}/likes. You can also use .../{post-id}/likes?limit=XXX. In response, you will get an array of like this:

data": [
    {
      "id": "xxxxxxxx", 
      "name": "yyyyyy"
    }, 
    ....
]

. - . - . .

- , . Facebook, . .

+2

All Articles