Facebook added a twitter-like "Subscribe" button in the last开发者_开发知识库 several days that allows people to see your public updates w/o them being your friend.
If a user becomes a subscriber and NOT a friend...I assume they are NOT in the friends table. If so, what table are they in?
What is the proper Graph API call for subscribers?
To get a list of a user's subscribers use this graph api call:
https://graph.facebook.com/adamfairbanks/subscribers
(Replace "adamfairbanks" with the user's user_id or username. For yourself you can also use "me".)
This call requires an access token. To make the call with an access token, you can use the Graph API Explorer:
https://developers.facebook.com/tools/explorer/?method=GET&path=adamfairbanks%2Fsubscribers
If you've never used the Graph API Explorer before, you may need to
- click [Get Access Token]
- click [Get Access Token] on the permissions dialog (no permissions need to be checked)
- click [Login] to the Graph API Explorer
- click [Submit] to resubmit the graph API call now with the access token
Change adamfairbanks to any facebook username or user_id that has enabled subscribers
精彩评论