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’m trying to create a leaderboard for my Facebook Fan Page. Basically what I want is that when a user clicked on the My App Tab in my facebook fan page, they will be shown a list of people that have liked my page and who has invited the most friends to like the page.

You - Invited 20 people to this page

Who has broght the most friends to this page.

User A- 200 Friends

User B - 190 Friends

User C - 150 Friends.

Facebook already have that application for its personally use. I want to know if there is a way to develop that for a fan page. Check the facebook leaderboard here. http://www.facebook.com/impact/.

Do you think this code will do the work.

<?php
$auth_url = "http://www.facebook.com/dialog/oauth?client_id=" 
            . $app_id . "&redirect_uri=" . urlencode($canvas_page);

$signed_request = $_REQUEST["signed_request"];

list($encoded_sig, $payload) = explode('.', $signed_request, 2); 

     $data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);

     if (empty($data["user_id"])) {
            echo("<script> top.location.href='" . $auth_url . "'</script>");
     } else {
    $user = $facebook->getUser(); 
    $me = $facebook->api('/me'); 
    $myFriends = $facebook->api('/me/friends');  

    $friends = $facebook->api(array(  
        'method' => 'fql.query',
        'query' => 'select uid from page_fan where uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND page_id ="232101106816088"'  
    ));  
   print_r($friends);
}
share|improve this question
Instead of asking us if we think it will work, try it, and if it doesn't work then ask for help. – Arms Jun 15 '11 at 21:10
I have tried it with the above codes but it doesn't work. I want somebody to explain how to write a FQL statement for a fan page that can produce a leaderboard for a fan page like this one. facebook.com/impact. – stanley Jun 16 '11 at 11:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.