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've been googling before asking but all in vain unfortunately. Is the only possibility to have all facebook users of my app is maintaining my own database or maybe there's a simpler way provided by any Facebook API? Can anyone help me out? How do i do that?

share|improve this question
possible duplicate of get a list of people using my facebook application – Juicy Scripter Apr 9 '12 at 10:46

2 Answers

up vote 3 down vote accepted

Facebook doesn't provide a way to retrieve users who have your application installed. And you should store that information on your end to be able to track this.

You can only retrieve count of users who use your application from Application Insights (see answer to similar question: How do I get all the users that have authorized my Facebook app?)

share|improve this answer

http://developers.facebook.com/docs/mobile/ios/build/ download hackbook project from github and it is best example to get all fb data.

permissions = [NSArray arrayWithObjects:@"email", @"user_about_me",  @"publish_stream", @"offline_access", nil];

Request to get all friend data and it will respond to - (void)request:(FBRequest *)request didLoad:(id)result delegates.

way to send request

[facebook requestWithGraphPath:@"me/friends" 
                         andParams:[NSMutableDictionary dictionaryWithObjectsAndKeys:@"picture,id,name,link,gender,last_name,first_name",@"fields",nil]
                       andDelegate:self];

Please like it. I suggest u to read only hackbook project, not the tut from fb site. it will confuse u.

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.