1

Iam trying get the number of times each individual liked my particular post.

It seems that it is possible to get the overall like count of a page.

But I dont need the overall like count. I want in specific data of a user who liked my posts.

I tried these links How can I get fan page likes count using graph api? Getting the Facebook like/share count for a given URL How to get Facebook likes count for a Facebook page?

andyrandy
  • 72,880
  • 8
  • 113
  • 130
newbie
  • 115
  • 1
  • 1
  • 14
  • Please go read [ask]. You are supposed to do a little bit more here than just tell us what you “need”. – 04FS May 22 '19 at 11:31
  • 3
    No, that is not really possible. Each of your friends would have to sign in to your app and grant it permission to read their likes, and you would need to have valid individual user tokens available for all of them each time you want to request this data, because _“A User or Page can only query their own likes. Other Users' or Pages' likes are unavailable due to privacy concerns.”_ https://developers.facebook.com/docs/graph-api/reference/v3.3/object/likes – 04FS May 22 '19 at 13:08

1 Answers1

1

I am just writing the answer which is mentioned in the comment. Because that's the answer.

No, that is not really possible. Each of your friends would have to sign in to your app and grant it permission to read their likes, and you would need to have valid individual user tokens available for all of them each time you want to request this data, because “A User or Page can only query their own likes. Other Users' or Pages' likes are unavailable due to privacy concerns.” developers.facebook.com/docs/graph-api/reference/v3.3/object/

newbie
  • 115
  • 1
  • 1
  • 14