Here is a tricky question, how do you get the like count of a facebook object such as an album or a photo? I know that facebook has a fql table called link_stat that allow you to get the like count for an external url, but it does not seem to work if the object is within facebook. If you access the likes via the opengraph api on a particular object, it will only return a maximum of 4 users that like the object, even though there maybe a few thousand users that like it. Any clues?

link|improve this question

80% accept rate
It does not work, I tried already as stated. It seems that facebook is not willing to openly share that data. – tourexplora Sep 30 '10 at 15:58
Post the code you tried because it works fine for me. – Computer Sep 30 '10 at 23:05
feedback

2 Answers

up vote 0 down vote accepted

I was able to do this by changing privacy settings. If you query the tables for the likes of XYZ user it will not return the data until and unless the user has set the Visibility to friends (for photo, album, video, link or a note) no matter if you have asked for the permissions( from within your application).

So for instance I am XYZ user and i liked a certain link posted by my GHI. and i use the application developed for Facebook and Allow access to my links. now if the application tries to access links that i have liked on Facebook the application will not be able to get the link posted by GHI (that i liked) until and unless the GHI has set the visibility of his her links to Friends.

if any one needs more help on this then get back on this forum.

regards, Haroon

link|improve this answer
thanks for the tip, will try it out... – tourexplora Mar 16 '11 at 14:11
feedback

See http://developers.facebook.com/docs/reference/fql/like

You can do fql query to retrieve a list of the likes based on the object_id then do a count.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.