7

closeAndClearTokenInformation を呼び出した後に openWithBehavior を呼び出すと、EXC_BAD_ACCESS が発生します。ネイティブの iOS 組み込みダイアログを使用しているか、高速切り替えダイアログを使用しているかに関係なく。

初めて FB にログインするためのコードは次のとおりです。

if (![FBSession activeSession]) {
    #ifdef FREE_APP
        NSString* suffix = @"free";
    #else
        NSString* suffix = @"paid";
    #endif
    FBSession *session = [[[FBSession alloc] initWithAppID:@"111111111111111"
                            permissions:permissions
                        urlSchemeSuffix:suffix
                     tokenCacheStrategy:nil] autorelease];
    [FBSession setActiveSession:session];
} 
else if ([FBSession activeSession].isOpen)
    [[FBSession activeSession] close];

[[FBSession activeSession] openWithBehavior:FBSessionLoginBehaviorUseSystemAccountIfPresent
              completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
                                     [self sessionStateChanged:session state:state error:error];
                                 }];

ログアウトするコード。その後、上記のコードは openWithBehavior の後に失敗します。

[[FBSession activeSession] closeAndClearTokenInformation];

3.1 ドキュメントで規定されているように、最初は openWithBehavior の代わりに openActiveSessionWithReadPermissions を使用していました。これはクラッシュしませんが、FB アプリ/Safari からのアプリの切り替えは機能しませんでした。おそらく接尾辞が必要なためでしょうか?アプリの切り替えを修正して元に戻すのが最も簡単な場合は、アドバイスしてください。

ありがとう。

4

1 に答える 1

7

5.x シミュレーターで実行したとき、openWithBehavior から追加の非常に役立つエラー メッセージが表示されたので、ソースを調べたところ、より明確になりました。

if (!(self.state == FBSessionStateCreated ||
      self.state == FBSessionStateCreatedTokenLoaded)) {
    // login may only be called once, and only from one of the two initial states
    [[NSException exceptionWithName:FBInvalidOperationException
                             reason:@"FBSession: an attempt was made to open an already opened or closed session"
                           userInfo:nil]
     raise];
}

openWithBehavior を呼び出す前に常に新しいセッションを作成するようにコードを変更しましたが、満足しているようです。

更新:これは、アクティブなセッションをチェックしてから閉じ、常に新しいセッションをインスタンス化する更新されたコードです...

  - (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {


      if ([FBSession activeSession])
         [[FBSession activeSession] closeAndClearTokenInformation];

      #ifdef FREE_APP
         NSString* suffix = @"free";
      #else
         NSString* suffix = @"paid";
      #endif

      NSArray *permissions = [[NSArray alloc] initWithObjects:@"email", nil];

      FBSession *session = [[FBSession alloc] initWithAppID:mFacebookID
                                               permissions:permissions
                                           urlSchemeSuffix:suffix
                                        tokenCacheStrategy:nil]; 

      [FBSession setActiveSession:session];

      If (allowLoginUI == YES) {
        NSLog(@"Calling openWithBehavior");
        [[FBSession activeSession] openWithBehavior:FBSessionLoginBehaviorUseSystemAccountIfPresent
                                   completionHandler:^(FBSession *session, FBSessionState state, NSError *error)
                                   {
                                      [self sessionStateChanged:session state:state error:error];
                                   }
        ];
     } else if(session.state == FBSessionStateCreatedTokenLoaded) {
        NSLog(@"Calling openWith completion handler");
        [session openWithCompletionHandler:^(FBSession *_session, FBSessionState status, NSError *error)
                                            {   [self sessionStateChanged:session state:status error:error];}
        ];
     }

     [session release];   

     return true;
  }
于 2012-11-05T18:36:34.420 に答える