2014-07-14 4 views
0

ios 용 facebook sdk를 처음 사용하고 있습니다. 나는 이상한 문제에 직면 해있다. facebook sdk를 사용하면 로그 아웃 할 수 있지만 다른 사용자와 로그인 할 수는 없습니다. 이 문제를 해결하는 방법을 알고 계십니까? 내가 로그 아웃에 사용되는 무언가를 붙여 넣기하고facebook sdk 로그 아웃 문제가 ios

..

- (IBAction)buttonTouched:(id)sender 
{ 
    // If the session state is any of the two "open" states when the button is clicked 
    if (FBSession.activeSession.state == FBSessionStateOpen 
     || FBSession.activeSession.state == FBSessionStateOpenTokenExtended) { 

    // Close the session and remove the access token from the cache 
    // The session state handler (in the app delegate) will be called automatically 


     NSHTTPCookie *cookie; 
     NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; 
     for (cookie in [storage cookies]) 
     { 
      NSString* domainName = [cookie domain]; 
      NSRange domainRange = [domainName rangeOfString:@"facebook"]; 
      if(domainRange.length > 0) 
      { 
       [storage deleteCookie:cookie]; 
      } 
     } 






    [FBSession.activeSession closeAndClearTokenInformation]; 

    // If the session state is not any of the two "open" states when the button is clicked 
    } else { 
    // Open a session showing the user the login UI 
    // You must ALWAYS ask for public_profile permissions when opening a session 
    [FBSession openActiveSessionWithReadPermissions:@[@"public_profile"] 
             allowLoginUI:YES 
            completionHandler: 
    ^(FBSession *session, FBSessionState state, NSError *error) { 

     [[FBRequest requestForMe] startWithCompletionHandler:^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) { 
      if (error) { 
       NSLog(@"error:%@",error); 
      } else { 

       NSLog(@"user dictionary %@",user); 
       // retrive user's details at here as shown below 
       NSLog(@"FB user first name:%@",user.first_name); 
       NSLog(@"FB user last name:%@",user.last_name); 
       NSLog(@"FB user birthday:%@",user.birthday); 
       NSLog(@"FB user location:%@",user.location); 
       NSLog(@"FB user username:%@",user.username); 
       NSLog(@"FB user gender:%@",[user objectForKey:@"gender"]); 
       NSLog(@"email id:%@",[user objectForKey:@"email"]); 
       NSLog(@"location:%@", [NSString stringWithFormat:@"Location: %@\n\n", 
             user.location[@"name"]]); 

      } 
     }]; 

     // Retrieve the app delegate 
     AppDelegate* appDelegate = [UIApplication sharedApplication].delegate; 
     // Call the app delegate's sessionStateChanged:state:error method to handle session state changes 
     [appDelegate sessionStateChanged:session state:state error:error]; 
    }]; 
    } 
} 

내가 텍스트를 얻고 로그 아웃 한 후 두 번째로 로그인 "이미 Myappname을 승인 한". 하지만 다른 사용자가 로그인 할 수있는 옵션이 없습니다.

도움이 되겠습니다. 미리 감사드립니다.

답변

0

ios의 웹 사이트와 같은 세션이 없으므로 사파리에서 Facebook 계정에서 로그 아웃해야하며 다시 로그인 할 수 있습니다. 나는 네 질문에서 내가 이해 한 것처럼 대답했다.

+0

네, 그게 유일한 길입니다. – user3744496