Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I notice that some games use Facebook SDK to login to their game. The first time I logged in, it shows a login form and go to their app. After logging out and in again, it doesn't show Facebook login form anymore. If I want to login with another Facebook account, I have to use Facebook app. Why? Why does the logout button of the game not logout Facebook as well? Is it a correct mechanism?

share|improve this question
This is a useful question with a beautiful answer below. If you close it, I'm sure some people will ask it again. – Emerald214 Aug 7 '12 at 7:34

2 Answers

up vote 2 down vote accepted

Open Facebook.java provided by facebook sdk and then i had changes like this:

public void authorize(Activity activity, String[] permissions,
            int activityCode, final DialogListener listener) {

        boolean singleSignOnStarted = false;

        mAuthDialogListener = listener;

      /*  // Prefer single sign-on, where available.
        if (activityCode >= 0) {
            singleSignOnStarted = startSingleSignOn(activity, mAppId,
                    permissions, activityCode);
        }
        // Otherwise fall back to traditional dialog.
        if (!singleSignOnStarted) {*/
            startDialogAuth(activity, permissions);
       // }
    }
share|improve this answer
It works!!!! Do you know how to do the same thing with Twitter4J? – Emerald214 Aug 7 '12 at 7:29

Use below code for logout:

private void logout(Facebook facebook) {
    AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook);
    mAsyncRunner.logout(getBaseContext(), new RequestListener() {
        @Override
        public void onComplete(String response, Object state) {
            Log.i("System out", "Logout:onComplete:res:state " + response
                    + ":" + state);
            new LoginData(SettingsActivity.this).clearFacebookDataInPref();
            handler.sendEmptyMessage(1);
        }

        @Override
        public void onIOException(IOException e, Object state) {
            Log.i("System out", "Logout:state" + ":" + state);
            e.printStackTrace();
            exceptionMessage = e.getMessage();
            handler.sendEmptyMessage(2);
        }

        @Override
        public void onFileNotFoundException(FileNotFoundException e,
                Object state) {
            Log.i("System out", "Logout:OnFileNotFoundExce:state:" + state);
            e.printStackTrace();
            exceptionMessage = e.getMessage();
            handler.sendEmptyMessage(2);
        }

        @Override
        public void onMalformedURLException(MalformedURLException e,
                Object state) {
            Log.i("System out", "Logout:MalformedURLExce:state:" + state);
            e.printStackTrace();
            exceptionMessage = e.getMessage();
            handler.sendEmptyMessage(2);
        }

        @Override
        public void onFacebookError(FacebookError e, Object state) {
            Log.i("System out", "Logout:onFacebookError:state" + state);
            e.printStackTrace();
            exceptionMessage = e.getMessage();
            handler.sendEmptyMessage(2);
        }
    });
}

if you save the access token and expires on shared preferences, remove/clear on onComplete listener..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.