I am using facebook sdk 3 with ios 5. I want to ask login window each time to user. Expect different users use app. I tried below code. It show login in a popover view inside app not with safari. But after I login or close window app crash.
NSArray *permissions = [NSArray arrayWithObjects:@"publish_actions", @"user_photos", nil];
FBSessionLoginBehavior behavior = FBSessionLoginBehaviorForcingWebView;
FBSessionTokenCachingStrategy *tokenCachingStrategy = [[FBSessionTokenCachingStrategy alloc]
initWithUserDefaultTokenInformationKeyName:@"FBTest"];
FBSession *session = [[FBSession alloc] initWithAppID:@"Appid"
permissions:permissions
urlSchemeSuffix:nil
tokenCacheStrategy:tokenCachingStrategy];
[session openWithBehavior:behavior
completionHandler:^(FBSession *session,
FBSessionState status,
NSError *error) {
// this handler is called back whether the login succeeds or fails; in the
// success case it will also be called back upon each state transition between
// session-open and session-close
if (error) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error"
message:error.localizedDescription
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
}
NSLog(@"SUCEEES");
[self sessionStateChanged:session state:session.state error:error];
}];
