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 trying to implement the Facebook login for one of my applications and the delegate methods - fbDidLogin: / application: handleOpenURL: / fbDidNotLogin: aren't being called. Here is the code that I'm using. Any help is much appreciated!

- (void)viewDidLoad
{
    ... 
    facebook = [[Facebook alloc] initWithAppId:kFacebookAppId];
}

-(IBAction) loginWithFacebook:(id)sender {
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if ([defaults objectForKey:@"FBAccessTokenKey"] 
        && [defaults objectForKey:@"FBExpirationDateKey"]) {
        facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
        facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
    }
    if (![facebook isSessionValid]) {
        NSArray* permissions =  [[NSArray arrayWithObjects:
                              @"email", nil] retain];
        [facebook authorize:permissions delegate:self];
    }
}

#pragma mark - Facebook delegate

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return [facebook handleOpenURL:url]; 
}

- (void)fbDidLogin {
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
    [defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
    [defaults synchronize]; 
}

-(void) fbDidNotLogin:(BOOL)cancelled {

}

-(void) fbDidLogout {

}

I also have the Facebook App ID in the info.plist file under the appropriate entry. I have break points in the loginWithFacebook: method and they hit successfully. the [facebook authorize:] method gets called as well.

Thanks,
Teja.

share|improve this question
Did you make sure do set yourself as FBSessionDelegate ? – Idan Jul 23 '11 at 22:00
I think the [facebook autorize:permissions delegate:self] sets the session delegate. I've tried setting it using [facebook setSessionDelegate:self] as well, but I still have the same result. – Tejaswi Yerukalapudi Jul 23 '11 at 23:08

1 Answer

up vote 6 down vote accepted

Oops, I've just realized the application: handleOpenURL: method is an iOS application delegate method. I had it in one of my UIViewControllers. Moved it to the right place and it works.

share|improve this answer
Thanks, its a great help! – rohit mandiwal Aug 15 '12 at 12:10

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.