My goal:
- In my app I want users to be able to share stuff on theirs walls
Since facebook is built into iOS 6 directly, I want to utilise the login credentials from the settings screen on iOS so that nobody needs to enter their username / password in my app.
I want that my users jump directly to the permissions dialog on facebook.
Somebody told me to utilise the defaults object to access those login credentials:
thzAppDelegate *delegate = (thzAppDelegate *)[[UIApplication sharedApplication] delegate];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if([defaults objectForKey:@"FBAccessTokenKey"]
&& [defaults objectForKey:@"FBExpirationDateKey"]){
[delegate facebook].accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
[delegate facebook].expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
}
but this is NOT working: Even when I reset my simulator, add my username pass in the settings on iOS, I still get a LOGIN SCREEN in MY APP, but I expected only the permissions.
I added also the recommended lines in the delegate.m:
#pragma mark Facebook
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
return [self.facebook handleOpenURL:url];
}
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
return [self.facebook handleOpenURL:url];
}
I DONT want to bother my users EVERY time with a login.
What do I do wrong?