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 have a Facebook app at https://developers.facebook.com that is connected to my native iOS app, and I also use the Facebook iOS SDK to extend my application with social networking capabilities.

My app will ask the user to authorize it by logging in using Facebook.

My question is how to know the users that already authorized the app so I can put them in a special list (UITableView)?

share|improve this question
Why do you keep writing hordes of commas in your subject lines? – Till Aug 16 '12 at 21:53

1 Answer

You can't get a list of all your app's users unless you've been keeping track of this server side.

You can get a list of a user's friends that also use your app by calling /me/friends?fields=installed - there'll be an 'installed:true' in the response for friends which have authorised your app

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.