How to get a list of subscribers from a facebook account on an api schedule?

How to get list of subscribers from facebook account by api schedule?

I have friends from my facebook account on

FB.api('/me/friends?access_token='+accessToken, { fields : 'id, name, picture' }, function(response) { }); 

Is there a way to get Facebook subscribers?

+13
facebook-graph-api
source share
2 answers

WASTE RESPONSE

You cannot get user subscribers for API version 2.0


Yes there is. The user who follows a particular user is his subscribers , and the endpoint

 https://graph.facebook.com/<user_id>/subscribers 

This will show you the total amount if you do not have user_subscriptions or friends_subscriptions , if you have the ones that you would get the name and user IDs that follow the user.

+4
source share

Now in the new version 2.0, subscribers have been removed in this version, but you can use v1.0 to get the next user

 FB->api("v1.0/me/subscribers"); (Javas script); 

user_subscribers permission user_subscribers ...

+3
source share

All Articles