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.

Is there anyway to get a list of mutual friends using Facebook's Graph API?

I've been playing around with this tool and haven't yet figured out a way. However, I saw Simon's demo on Facebook's site, and it sounded like he was able to get the mutual likes of friend of his (it was too blurry to see how he did it so) so I feel like I ought to be able to, but I can't find any documentation besides some php scripts.

share|improve this question

3 Answers

up vote 10 down vote accepted

You can use this one to get mutuals friends from the graph

https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fmutualfriends%2F1207059

share|improve this answer
Documentation for that method is here: developers.facebook.com/docs/reference/api/user/#mutualfriends – sversch Jan 18 at 6:51

Goto the API Documentation page here:

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

Mid-way down the page you will see:

•Friends: https://graph.facebook.com/me/friends?access_token=...

You'll need to replace the /me/ with a valid ID of the person you are looking for and you;ll need to get the access_token as well.

Hope this starts you in the right direction..

EDIT: There is also this which may be easier:

http://developers.facebook.com/docs/reference/rest/friends.getMutualFriends/

Legacy REST method

share|improve this answer

I would do this as a FQL query and test it with their FQL tester. This might not be 100% what you are looking for, but it should be enough to get you started:

   SELECT uid1, uid2 FROM friend 
   WHERE uid1 IN 
   (SELECT uid2 FROM friend WHERE uid1=me())
   AND uid2 IN 
   (SELECT uid2 FROM friend WHERE uid1=me())

You could then look up these id's up against the user table.

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.