我的应用将被多个用户使用。
如何以某种方式集成 facebook,以便 safari 不保存任何用户凭据并在每次有人尝试登录时抛出登录页面。
我已经使用 FBSessionLoginBehaviorForcingWebView 来强制在应用程序内进行 Web 视图登录,但问题是,当第一个用户尝试通过应用程序内显示的视图登录到 fb 时,控件然后转到 safari 进行身份验证,它只是保存凭据。
因此,当其他用户尝试登录并在应用程序本地 UIWebView 中输入他的凭据时,控件再次转到 safari,它已经存储了 previos creds 并且新用户无法进行身份验证。
所以基本上第一个用户是永久登录的。清除 web 视图的 cookie 不起作用。我无法清除它们以进行 safari。
帮助提前谢谢。
这就是我一直在做的
if([FBSession activeSession].isOpen)
{
[[FBSession activeSession] closeAndClearTokenInformation];//Also, clearing all the local cookies
}
else
{
AppDelegate *delegate = [UIApplication sharedApplication].delegate;
delegate.session = [[FBSession alloc] init];
[FBSession setActiveSession:delegate.session];
[delegate.session openWithBehavior:FBSessionLoginBehaviorForcingWebView completionHandler:^(FBSession *session1, FBSessionState status, NSError *error) {
if (!error) {
[self openSession]; // your method
}
}];
}
- (void)sessionStateChanged:(FBSession *)session state:(FBSessionState) state error:(NSError *)error{
switch (state) {
case FBSessionStateOpen:
{
[FBRequestConnection startForPostStatusUpdate:@"Some message"completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
if (!error) {
//logout again
NSLog(@"startForPostStatusUpdate SUCESS");
}
else {
//logout again
NSLog(@"startForPostStatusUpdate FAIL");
}
}];
}
break;
case FBSessionStateClosed:
{
NSLog(@"FBSessionStateClosed");
}
break;
case FBSessionStateClosedLoginFailed:
[FBSession.activeSession closeAndClearTokenInformation];
break;
default:
break;
}
if (error) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error" message:error.localizedDescription delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
}
}
此外,使用您的方法修改了应用程序委托。