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.

how to get uid of person with whom the user is in relation or married with fql if the required permisson is granted ? I need to get user id of user with whom the person is in relation to .. i am using php sdk

share|improve this question

1 Answer

The information you are looking for is in the user Graph API endpoint. It is called significant_other. You'll be able to use it with the API, like this -

https://graph.facebook.com/user_id?fields=id,name,significant_other 

With FQL you can use the significant_other_id field of the user table. Like this -

select uid, name,significant_other_id from user where uid=user_id 
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.