0

このコードを使用してユーザーの詳細を取得し、サーバーにログインするための資格情報として使用しています。

public class FacebookDialog extends Activity {

    Facebook facebook = new Facebook("211111915613509");
    private SharedPreferences mPrefs;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (!(getSharedPreferences(SplashActivity.USER_PREFS, 0).getBoolean(
                "fb", false))) {

            try {
                String s = facebook.logout(this);
                } catch (MalformedURLException e) {
                } catch (IOException e) {
                }
        }
        /*
         * Get existing access_token if any
         */
        mPrefs = getPreferences(MODE_PRIVATE);
        String access_token = mPrefs.getString("access_token", null);
        long expires = mPrefs.getLong("access_expires", 0);
        if (access_token != null) {
            facebook.setAccessToken(access_token);
        }
        if (expires != 0) {
            facebook.setAccessExpires(expires);
        }
        if (!facebook.isSessionValid()) {

            facebook.authorize(this, new String[] {}, new DialogListener() {
                @Override
                public void onComplete(Bundle values) {
                    SharedPreferences.Editor editor = mPrefs.edit();
                    editor.putString("access_token", facebook.getAccessToken());
                    editor.putLong("access_expires",
                            facebook.getAccessExpires());
                    editor.commit();
                    getFbDetails();
                }

                @Override
                public void onFacebookError(FacebookError error) {
                }

                @Override
                public void onError(DialogError e) {
                }

                @Override
                public void onCancel() {
                }
            });
        } else {
            getFbDetails();
        }
    }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        facebook.authorizeCallback(requestCode, resultCode, data);

    }

    public void onResume() {
        super.onResume();
        facebook.extendAccessTokenIfNeeded(this, null);
    }
}

これは正常に機能します。

ユーザーがFacebookを使用してログインする場合はfbtrueに設定し、ユーザーがアプリでログアウトをクリックする場合はfalseに設定しています。

問題は:

ログアウトして、Facebookを使用して再度ログインしようとすると(Facebookアプリケーションでもログアウトします)。それでもユーザーの詳細を取得できました。

どこが間違っているのですか?

fbがfalseかどうかをチェックしてfacebook.logout()を使用しています。

セッションがクリアされていないと思いますが、どうすればよいですか?

ありがとうございました

4

2 に答える 2

2

ログアウトボタンでこれを試してください:-

         mFacebook.authorize(PlayVideo.this, new String[] {}, Facebook.FORCE_DIALOG_AUTH,new LogoutDialogListener());}

 public final class LogoutDialogListener implements DialogListener {
    public void onComplete(Bundle values) {
        try {

            // SessionStore.clear(Login.mFacebook, PlayVideo.this);
            Util.clearCookies(PlayVideo.this);

            Login.mFacebook.setAccessToken(null);
            Login.mFacebook.setAccessExpires(0);
            return;

        } catch (Exception error) {
            Toast.makeText(PlayVideo.this, error.toString(),
                    Toast.LENGTH_SHORT).show();
        }
    }

    public void onFacebookError(FacebookError error) {
        Toast.makeText(PlayVideo.this,
                "Something went wrong. Please try again.",
                Toast.LENGTH_LONG).show();
    }

    public void onError(DialogError error) {
        Toast.makeText(PlayVideo.this,
                "Something went wrong. Please try again.",
                Toast.LENGTH_LONG).show();
    }

    public void onCancel() {
        Toast.makeText(PlayVideo.this,
                "Something went wrong. Please try again.",
                Toast.LENGTH_LONG).show();
    }
}
于 2012-10-30T10:01:15.940 に答える
0

私の記憶が正しければ、Facebook SDKでFbDialog.javaを編集できます(これは数週間前にリリースされた最新のものではなく、前のものです)。

ずっと前に変更したコードからこれを取り出したところです。パスワードの行がトリックを実行する行だと思います(109行目から開始)...

private void setUpWebView() {
        mWebView = new WebView(getContext());
        mWebView.setVerticalScrollBarEnabled(false);
        mWebView.setHorizontalScrollBarEnabled(false);
        mWebView.setWebViewClient(new FbDialog.FbWebViewClient());
        mWebView.getSettings().setJavaScriptEnabled(true);
        mWebView.loadUrl(mUrl);
        mWebView.setLayoutParams(FILL);
        WebSettings mWebSettings = mWebView.getSettings();
        mWebSettings.setSavePassword(false); //RIGHT HERE
        mContent.addView(mWebView);
    }

それはあなたのログインが持続するのを防ぎます。

于 2012-10-30T10:09:58.403 に答える