I'm developing an iOs 5 app and I'm trying to add Facebook sharing with Facebook SDK. I've been coding a lot but it doesn't work. This is the code I use from the Facebook Developers Site:
- (IBAction) buttonpressed {
facebook = [[Facebook alloc] initWithAppId:@"245697495524266" andDelegate:self];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"]) {
facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
}
if (![facebook isSessionValid]) {
[facebook authorize:nil];
} else {
[self fbDidLogin];
}
}
- (BOOL) application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
return [facebook handleOpenURL:url];
}
- (void)fbDidLogin {
NSLog(@"Facebook did login");
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
[defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
[defaults synchronize];
// Here I would like to share something (photo...)
}
When I press the button I go to the Facebook app and I have to allow the app, then I return to my app. The problem is that - (void) fbDidLogin doesn't run (the NSLog doesn't appear in the console), so I can't share anything. How can I fix it?
