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.

This question already has an answer here:

i want to get a user's friends who are using the app too. I currently achieve this by getting all the friends

FB.api('/me/friends?fields=id,name,updated_time&date_format=U&<?=$access_token?>',
    { limit: 500 },
        function(response) {
            alert(response.data.length + ' friends';
});

and then checking if I can see them in my database, using an ajax call.

The thing that this isn't really what I need, because:

  • This way I will consider users that are no longer using the app
  • It makes difficult to present the friends as I first have them all in an array and then, with delay, this array is updated and so on.

So the question is, can I get this information from the Graph API directly? (something like is_app_user = 1 or 0)

share|improve this question
1  
You can do it with FQL – the user table has a field is_app_user. – CBroe Nov 16 '12 at 16:15

marked as duplicate by Igy, Peter O., evilone, Bill the Lizard Mar 28 at 13:37

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

You can either add the installed field when asking for friends, like so:

/USER_ID/friends?fields=installed

and only the friends who installed your app will have this field set.

You can also use FQL intead:

SELECT uid
FROM user  
WHERE is_app_user=1 AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())

I prefer the FQL version, since it returns the short list from the start.

share|improve this answer
First solution suited my needs. Thanks! – Toni Michel Caubet Nov 17 '12 at 13:54
You're welcome! – Guy Tomer Nov 17 '12 at 17:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.