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.

when i press the login button the users name, surname and profile picture is displayed. when i quit the app and then relaunch it it retains the information that the user is logged in but it no longer displays the users info. and i have to log out and then re-login for the user info to be displayed again. how do i fix that? here is my code:

- (IBAction)login:(id)sender{
AppDelegate* appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
// The user has initiated a login, so call the openSession method
// and show the login UX if necessary.
if (FBSession.activeSession.isOpen) {

 //   NSMutableDictionary *param =[NSMutableDictionary dictionaryWithObjectsAndKeys:@"picture",@"fields", nil];


    FBRequest *me = [FBRequest requestForMe];
    [me startWithCompletionHandler: ^(FBRequestConnection *connection,
                                      NSDictionary<FBGraphUser> *my,
                                      NSError *error) {
        self.label.textColor =[UIColor whiteColor];
        self.label.text = my.first_name;
        self.label2.textColor =[UIColor whiteColor];
        self.label2.text=my.last_name;

        //profile picture
        NSString *fbuid= my.id;
        NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https:/graph.facebook.com/%@/picture?type=large", fbuid]];
        NSData *data = [NSData dataWithContentsOfURL:url];
        imageProfile.image = [UIImage imageWithData:data];


    }];
    [appDelegate closeSession];
} else {

    // The user has initiated a login, so call the openSession method
    // and show the login UX if necessary.
[appDelegate openSessionWithAllowLoginUI:YES];
}
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.