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 know you can get the total fan count for a facebook page via the facebook graph api. But I cannot seem to be able to get the total likes (or fan count) of a facebook application. Take for example, graph.facebook.com/castleage, notice that the fan count is missing...any clues on how to do so? Thanks.

share|improve this question

1 Answer

Try luck with something like this:

$data = array();

try {
    $data = $facebook->api(array(
        'query' => 'SELECT uid FROM page_fan WHERE page_id=' . $fanpageId,
        'method' => 'fql.query'
    ));
} catch(Exception $e) {
    print_r($e);
}

$fanCount = count($data);    

print_r($fanCount);
share|improve this answer
I have not gotten a chance to try it out yet,but will update once if it works,thanks – tourexplora Mar 13 '11 at 1:35

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.