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'm using Facebook native API for sharing in my iPhone App, i need to know as soon as user logged in i need his username, how can i get this? Any help is appriciated in advance.

share|improve this question
Seems like a duplicate one.refer - stackoverflow.com/questions/5170735/… – rishi Jan 2 '12 at 17:03

1 Answer

You can use Graph API to do this. Just make a request in fbDidLogin delegate method:

- (void)fbDidLogin {    

    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];    
    [defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
    [defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
    [defaults synchronize];  

    [facebook requestWithGraphPath: @"me" andDelegate: self];      
}

And then you can get all the information about current user in didLoad method:

- (void)request:(FBRequest*)request didLoadRawResponse:(NSData*)data
{
    NSString *response = [[NSString alloc] initWithData: data
                                               encoding:NSUTF8StringEncoding];
        NSLog(@"%@", response);
        [response release];
}

- (void) request:(FBRequest*)request didLoad:(id)result
{        
    if ([result isKindOfClass:[NSDictionary class]])
    {                   
        NSString *name = [result objectForKey: @"name"];
        NSString *fbID = [result objectForKey:@"id"];
    }
}
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.