I am developing a fb application. And I want to know how I can get friends in the order of number of mutual friends. Is it possible with fql or any other method?
|
feedback
|
|
Theoretically, you can get a list of a user's friends using:
Then you can check each of the result to see if they are your friend too.
... and keep a track of the count. However my test didn't return any result yet. I attempted to get the friends of some of my facebook friends but it returns an exception: | |||
|
feedback
|
|
I don't think mutual friends are available via FQL so you would have to do this the hard: calling the graph api in a loop for each friend and getting a count of mutual friends. The graph api method is: /me/mutualfriends/yourFriendsId and you could do 20 batch requests at a time to help speed this up. If you can find a way to do this with FQL, that would be your fastest route. | |||
|
feedback
|