4

我有一个与 Facebook 集成的应用程序,有时一切正常,但现在我收到了一些邮件,有些人无法使用 Facebook 登录。

现在我现在有什么问题。

如果我没有通过我的 facebook 帐户中的设置登录,一切正常,但是当我通过设置登录时,我总是进入sessionStateChanged功能FBSessionStateClosedLoginFailed:

我能做些什么呢?

这是我的代码:

首先,当我单击使用 Facebook 登录时,我使用此功能:

- (void)facebookLoginFunction {
    if ([self checkInternet]==TRUE) {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sessionStateChanged:) name:FBSessionStateChangedNotification object:nil];
        AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
        // The person using the app has initiated a login, so call the openSession method
        // and show the login UX if necessary.
       [appDelegate openSessionWithAllowLoginUI:YES];
    }
}

和功能 sessionStateChanged: 在委托

- (void)sessionStateChanged:(FBSession *)session state:(FBSessionState) state error:(NSError *)error{

    switch (state) {
        case FBSessionStateOpen:
            if (!error) {
                // We have a valid session
                NSLog(@"User session found");
            }
        break;
        case FBSessionStateClosed: NSLog(@"User session closed");
        case FBSessionStateClosedLoginFailed:{ NSLog(@"Login failed");
            [FBSession.activeSession closeAndClearTokenInformation];}
        break;
    default:
        break;
    }

    [[NSNotificationCenter defaultCenter] postNotificationName:FBSessionStateChangedNotification object:session];

    if (error) {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error" message:error.localizedDescription delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [alertView show];
    }
}

我真的希望你能帮助我,因为我不明白这个疯狂的问题。谢谢

4

1 回答 1

3

添加两者

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

- (void)applicationDidBecomeActive:(UIApplication *)application   
{   
[FBSession.activeSession handleDidBecomeActive];   
}

工作!

对于这个答案,所有学分都归于 Skrew。

于 2014-01-05T16:20:56.750 回答