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.

On the one hand, if his friends haven't signed in we may not know who all of their friends are. On the other hand, friend lists are public for most people. Thoughts?

Thanks!

share|improve this question
possible duplicate of Get a list of Friends of a Friend on facebook – Mat Feb 26 '12 at 17:02

2 Answers

try this

read_friendlists

Provides access to any friend lists the user created. All user's friends are provided as part of basic data, this extended permission grants access to the lists of friends a user has created, and should only be requested if your application utilizes lists of friends.

http://developers.facebook.com/docs/reference/api/permissions/

share|improve this answer
Thanks Mohammed Shahid. I know an app can access users friend lists. But I'm wondering if an app can also access users' friends' friend lists (so if I'm using the app and you're my friend, the app can see who your friends are). Does anyone know if this is possible? – Nick Soman Feb 27 '12 at 3:12
have you tried $friends = $facebook->api('/FRIEND_ID_HERE/friends/'); ... i have not tried but it should work – Mohammad Shahid Feb 27 '12 at 7:55
Unfortunately I don't think this works. Facebook won't return friends of a friend who hasn't used the app. – Nick Soman Feb 29 '12 at 6:42
up vote 0 down vote accepted

After digging, this is not possible. Apps can't get complete lists of friends for users who have not used those apps.

share|improve this answer

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.