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.

I'm building a "Clue" like kind of game where you have to find which friend of yours is the criminal with some clues to help you.

I am trying to find a way to know the kind of relation between the user and a friend I picked up in the friends list; are they friends, family, accointance ? I can't find any information about this in the API documentation and ask myself if there is some other way to find it.

Here is my current request if it can help you...

$criminal_infos = $facebook->api(array(
        'method'=>'fql.query',
        'locale'=>'fr_CA',
        'query'=>'SELECT sex,relationship_status,education,current_location FROM user WHERE uid='.$criminal_id.''
    ));

Thanks for your help!

share|improve this question

1 Answer

up vote 0 down vote accepted

You could do it by requesting access to their friendlists and then seeing of the user ID in question is in a friendlist for Family or close friends etc.

https://developers.facebook.com/docs/reference/api/FriendList/

share|improve this answer
Can I specify a user ID and get in what list the user is? Or do I have to scan all lists? – Jean-François G. B. Jul 17 '12 at 19:46
I believe you have to retrieve each friendlist and scan each list for the specific user ID. This would be more efficient than requesting the api for each friendlist user pair state. I.e. 1 request per friendlist no matter how many friends you need to scan? Otherwise you may hit the limit for api requests for your app. – Jonathan Dean Jul 17 '12 at 19:51
Feel free to accept my answer if it has helped you! :) – Jonathan Dean Jul 20 '12 at 16:14

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.