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.
if (!facebook.isSessionValid()) {
            Log.i("FacebokLogin ", "facebook session not valid");
            facebook.authorize(FacebookUtility.this, new String[] {}, new DialogListener() {
                @Override
                public void onComplete(Bundle values) {

                    SharedPreferences.Editor editor = mPrefs.edit();
                    editor.putString("FBLaccess_token",
                            facebook.getAccessToken());
                    editor.putLong("FBLaccess_expires",
                            facebook.getAccessExpires());
                    editor.commit();
                    Log.i("FacebokLogin ", "onComplete, values: " + values);
                    shareOnFacebook();
                }   

 mFacebook.dialog(FacebookUtility.this, "feed", parameters, new UpdateStatusListener());

After authorization complete and mFacebook.dialog () executes it asks for username and password and shows feed dialog but the user is already logged in using facebook app. What can be the problem? I am testing on android 4.0 htc desire c

share|improve this question

1 Answer

try this

if (!facebook.isSessionValid()) {
    facebook.authorize(this,
            new String[] { "email", "publish_stream" },
            new DialogListener() {

                @Override
                public void onCancel() {
                    // Function to handle cancel event
                }

                @Override
                public void onComplete(Bundle values) {
                    // Function to handle complete event
                    // Edit Preferences and update facebook acess_token
                    SharedPreferences.Editor editor = mPrefs.edit();
                    editor.putString("access_token",
                            facebook.getAccessToken());
                    editor.putLong("access_expires",
                            facebook.getAccessExpires());
                    editor.commit();
                }
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.