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.

Need help,

function getFamily()
{
FB.api('/me/family', function(response) {                   
alert(JSON.stringify(response));                        
});
}  

With the above function i am unable to fetch the list of family relationship. If there is any other way? Thanks

share|improve this question
1  
It appears to be undocumented so you should better not use it but check this: zapumal.info/?p=339 . Probably facebook have removed it from being public i.e. for specific apps only! – OmarIthawi Jun 16 '12 at 15:11
It’s not undocumented, it’s listed under the user objects „Connections” on developers.facebook.com/docs/reference/api/user – CBroe Jun 16 '12 at 15:17
I added the fields as id and name. Still the response is empty. – dominic Jun 16 '12 at 16:09

1 Answer

up vote 1 down vote accepted

Have you acquired "user_relationships" permission first …?

share|improve this answer
how do i do that. Please help – dominic Jun 16 '12 at 16:00
function getFamily() { FB.api('/me/family',{ fields: 'id'}, function(response) { var family_data = JSON.stringify(response); alert(family_data); }); } – dominic Jun 16 '12 at 16:09
This throws out a empty response data. Fields as id and name. – dominic Jun 16 '12 at 16:10
If you don’t know to ask for permissions, please consult the docs. – CBroe Jun 16 '12 at 16:51
See the Permissions docs for a list of permissions, and the Authentication docs for how to authenticate – Igy Jun 16 '12 at 18:29
show 3 more comments

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.