Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

That's what I need, to get the user's (with an Access Token of course) unsubscribed friends? I'd be great to get an array with all the users, but a simple count would do the job.

I see here that natively Facebook provides this option: In the main page, the Newsfeed option has an Edit button, there you can see the number of unsubscribed friends, no way that it's in the API?

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

You can do it by accessing the "user_subscriptions" and "friends", using an access token, and removing the "user_subscriptions" results from the "friends" results so you are left with the friends that are unsubscribed.

I don't think facebook offers a parameter to get unsubscibed friends on its own.

share|improve this answer
Thank you, but it didn't work. Idk if I'm doing something wrong, but "me/subscribedto" or "me/subscribees" returns an integer value that I believe that are the users I'm subscibed to that are not my friends (my result for exemple was the number 1), and "me/subscribers" returns the users that subscribe to my profile. I tried it here developers.facebook.com/tools/explorer and saw the references here: developers.facebook.com/blog/post/638 Thanks again :) – João Paulo Apolinário Passos Aug 6 '12 at 4:05
I think by being friends with someone you are not subscribed to them anymore, as they are friends back. You are only subscribed to someone if you choose to be and they haven't added you as a friend.Do you mean friends that have deselected "show in news feed"? as I don't think you have access to this. – braza Aug 6 '12 at 7:49
Yeah, there is an explicit option that is "Unsubscribe" from friends, I'd like to have this count, but now I'm starting to think it's impossible. Too bad, thanks anyway! – João Paulo Apolinário Passos Aug 6 '12 at 8:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.