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 can get the friendlist by

[facebook requestWithGraphPath:@"me/friends" andDelegate:self];

But the list contain all the friends, how could I get the friendlist that only played the app.

share|improve this question

2 Answers

You can query the OpenGraph for the field installed:

[facebook requestWithGraphPath:@"me/friends?fields=installed,name"
                                             andParams:params
                                         andHttpMethod:httpMethod
                                           andDelegate:delegate]; 

That will return you a list of friends, in which some will have the field installed=1

share|improve this answer
Hi Angel, I have the same problem but can't understand in this answer that.. for which application "fields=installed" will check. I mean, we are not giving any appId here then how can we be sure that in the response installed=1 is for my application.Please help me. – iOS Monster Apr 24 '12 at 6:48
Well, you are giving the appId when login. The facebook object used is logged within that app. – Angel García Olloqui May 1 '12 at 16:22
ic, thanx Angel! – iOS Monster May 2 '12 at 11:37

This gives you a list of your friends that have the app installed

friend.getAppUsers()

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.