Facebook API to request my subscribers / subscribers

Do you know if there is an API to request my subscribers and / or subscription?

+7
source share
3 answers

This is undocumented but looks like / userId / subscribers . And you will need advanced user_subscriptions permissions as shown below. In fact, using the Graph API Explorer is how I found out that subscriptions are really affordable. I have not yet found the method of subscriptions, since / me / subscriptions is not valid, as is the case for applications and subscribing to real-time updates.

Update: still undocumented, but it looks like / userId / subscribers and / userId / subscribers

user_subscriptions

+12
source

Get subscriptions from the subscriptions table using FQL:

 SELECT subscribed_id FROM subscription WHERE subscriber_id = me() 

Using the FQL multiscreen set, you get the signature names:

 query1: SELECT subscribed_id FROM subscription WHERE subscriber_id = me() query2: SELECT name, uid FROM user WHERE uid IN (SELECT subscribed_id FROM #query1) 

This request requires user_subscriptions permission.

+2
source

As OffBySome pointed out, you can get your subscribers using the user_subscriptions permission (using me / subscribers), but not with whom you are following, nor, more importantly, none of the messages you are following, because they are not in your home stern. From experience, I would say that the Graph API is lagging behind the onslaught of new features. Usually he catches up in a few weeks.

0
source

All Articles