1

私のプロジェクトでは、ユーザーは Facebook ネイティブ アプリ (FBConnect) を介してログインし、ユーザーのアクセス トークンを保持していました。私のアプリには、Facebookページのようなボタンのiframeを表示するようなボタンがあり、ユーザーがページのようなボタンを押すと、Facebookはユーザーに再度サインインするように求めます。ユーザーは現在ログインしており、トークンは有効であり、iframe でアクセス トークンを渡していますが、iframe の作成に使用しているコードは次のとおりです。

NSString *str=[NSString stringWithFormat:@"<iframe src=\"https://www.facebook.com/plugins/likebox.php?id=XXXXXXXXXXXXXXX&access_token=%@&amp;width=292&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:282px; height:62px;\" allowTransparency=\"true\"></iframe>",accesstoken];
NSString *likeButtonHtml = [NSString stringWithFormat:@"<HTML><BODY>%@</BODY></HTML>", str];
  [webview loadHTMLString:likeButtonHtml baseURL:[NSURL URLWithString:@""]];

iframeのページのように、この2回目のログインを回避する方法を教えてください

4

1 に答える 1

1

UIWebView でログインする必要があります。メソッドの実装でそれを行うことができます:

[[FBSession activeSession] openWithBehavior:FBSessionLoginBehaviorForcingWebView completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
    switch (status) {
        case FBSessionStateOpen:
            // call the legacy session delegate
            //Now the session is open do corresponding UI changes
            break;
        case FBSessionStateClosedLoginFailed:
        { // prefer to keep decls near to their use

            // unpack the error code and reason in order to compute cancel bool
            NSString *errorCode = [[error userInfo] objectForKey:FBErrorLoginFailedOriginalErrorCode];
            NSString *errorReason = [[error userInfo] objectForKey:FBErrorLoginFailedReason];
            BOOL userDidCancel = !errorCode && (!errorReason ||
                                                [errorReason isEqualToString:FBErrorLoginFailedReasonInlineCancelledValue]);

            // call the legacy session delegate if needed
            //[[delegate facebook] fbDialogNotLogin:userDidCancel];
        }
            break;
            // presently extension, log-out and invalidation are being implemented in the Facebook class
        default:
            break; // so we do nothing in response to those state transitions
    }
}];

サンプル コードを確認してください: https://github.com/gneil90/facebook-likebox-ios-login

于 2013-09-20T08:45:52.843 に答える