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 requirement like need to fetch the friends who are using my application. Same as Instagram application Find friends from Facebook.

I know this is code which provides the friends list.

- (void) getFriendName :(id) sender {

        self.modeString = @"friendName";

        NSString * query = [NSString stringWithFormat:@"SELECT name FROM user WHERE uid IN (SELECT uid1 FROM friend WHERE uid2=me())",appDelegate.friendList];
        NSLog(@"query :%@",query);
    //    NSString * query = [NSString stringWithFormat:@"SELECT uid, first_name, last_name, birthday_date, sex, pic_square, current_location, hometown_location FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND strlen(birthday_date) != 0 ORDER BY birthday_date",appDelegate.friendList];
        NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                        query, @"query",
                                        nil];
        [_facebook requestWithMethodName:@"fql.query"
                               andParams:params
                           andHttpMethod:@"POST"
                             andDelegate:self];
    } 

Among these friends list, how can I retrieve only friends using my application?

share|improve this question

1 Answer

Do Facebook integration at server side if you are maintaining data at server.

share|improve this answer
thanks for your help.....it could be clear undestand to me if you elaborate your answer. – Mahesh Babu Aug 17 '12 at 16:51
1  
Do facebook integration at server side. Server will maintain facebook id of each user of this application. Application will send user's fb_id to server. Server will fetch all friends of that user. If any of your friend's fb_id is exists in your server database that means your that friend is using the same application. Like wise server will cheack this for all ur friends and give you the list of facebook friends using the same application – spaleja Aug 22 '12 at 5:37
thanks nice logic.... – Mahesh Babu Aug 22 '12 at 17:19
@MaheshBabu, increase your accept rate – spaleja Oct 26 '12 at 8:57

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.