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 have the following code to post to FB using FB sdk. First time when i click the button to post , it opens this activity and it try to authenticate and i get FB page saying " you are not logged in ". If i press back and try to post again , i am getting the login page to enter credentials and the post is success. The issue is only first time after installing the app. Please help to solve this issue

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.i("FAceBook","create instance");
    facebook = new Facebook(APP_ID);

    facebook.authorize(FaceBookShareActivity.this, PERMISSIONS,Facebook.FORCE_DIALOG_AUTH,

    new DialogListener() {
        @Override
        public void onComplete(Bundle values) {
            try {
                Log.i("FAceBook","DialogListener");
                Bundle parameters = new Bundle();
                parameters.putString("message", "msg");
                String response = facebook.request("me/feed", parameters,
                        "POST");
                Log.d("fbproblem", "got response: " + response);
                if (response == null || response.equals("")
                        || response.contains("error")) {
                    Log.d("Login failed", "RETRY");
                } else {
                    Log.d("fbproblem",
                            "Message posted to your facebook wall!");
                    Toast.makeText(getApplicationContext(),
                            "Message posted to your facebook wall!",
                            Toast.LENGTH_LONG).show();
                    // facebook.logout(MainActivity.this);
                }
            } catch (Exception e) {
                // finish();
                Log.d("fbproblem", e.getMessage());
            }
            Log.d("fbproblem", "SUCCESS");
             finish();
        }

        @Override
        public void onFacebookError(FacebookError error) {
            Log.d("fbproblem", error.getMessage());
            // finish();
        }

        @Override
        public void onError(DialogError e) {
            Log.d("fbproblem", e.getMessage());
            // finish();
        }

        @Override
        public void onCancel() {
            Log.d("fbproblem", "");
            // finish();
        }

    });
    Log.i("FAceBook","Call authorise");
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    try {
        super.onActivityResult(requestCode, resultCode, data);
        facebook.authorizeCallback(requestCode, resultCode, data);
        Log.i("FAceBook","authorizeCallback called");
    } catch (Exception e) {
        Log.d("fbproblem", e.getMessage());
        Toast.makeText(getApplicationContext(),
                "Something goes wrong Try again Later!!", Toast.LENGTH_LONG)
                .show();
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.