Answer the question
In order to leave comments, you need to log in
How to get the number of facebook followers of a personal page?
Facebook has disabled the ability to get the number of followers through the API,
but they exist)))
https://developers.facebook.com/docs/plugins/follo...
can anyone tell me how to get this number using php ?
Answer the question
In order to leave comments, you need to log in
Get number of page likes:
$pageName = 'facebook';
$query = 'SELECT fan_count FROM page WHERE username="' . $pageName . '"';
$response = file_get_contents( 'http://api.facebook.com/restserver.php?method=facebook.fql.query&query=' . rawurlencode( $query ) );
$xml = simplexml_load_string( $response );
echo $xml->page->fan_count;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question