I
I
Ivan2015-08-13 13:43:20
PHP
Ivan, 2015-08-13 13:43:20

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

1 answer(s)
F
Finesse, 2016-03-22
@Finesse

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;

How to get the number of subscribers of a user without an AccessToken has not yet been found.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question