Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have build a like button per foto in NextGen Gallery in Wordpress via the next tutorial: http://itc.webmaasters.com/nextgen-gallery-with-facebook-and-twitter-wordpress-tutorial-or-hack/#.UDdgz9ZlQUo

My purpose now is to make a list of the Top 3 most liked fotos.

I have a demo over here: http://www.fotostudio87.nl/fotowedstrijd-2/

Does anybody has any idea how to accomplish a Top 3 list of the most liked foto's?

Greetings,

Joni Fleischer

share|improve this question

1 Answer

So i've come a little further with LINK_STAT from Facebook API (FQL)

Now link_stat retrieves only 1 URL and i want to retrieve 40 of them.

Has anybody has any idea how to accomplisch that?

Now i have: http://www.fotostudio87.nl/fotowedstrijd-2/ (Loads very slow)

Script use:

$api = 'https://api.facebook.com/method/fql.query?query=';
$query = 'SELECT+url%2C+like_count+FROM+link_stat+WHERE+url%3D%22';
$url = 'www.fotostudio87.nl/wp-content/gallery/fotowedstrijd_1/';
$photo = 'fotostudio87_1828.jpg';
$xml_feed_url = $api.$query.$url.$photo.'%22';
$xml = simplexml_load_file($xml_feed_url);

echo 'URL: '.$xml->link_stat[0]->url.'<br><br>';
echo 'Like Count: '.$xml->link_stat[0]->like_count.'<br><br>';
share|improve this answer
FQL supports an IN() operator for comparing a column to multiple values. – CBroe Aug 29 '12 at 10:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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