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 an issue which bothers me past few days.

I have an android applications which runs some native (c++) code. From that code i run (using JNI) few Java functions which are using facebook sdk (login, logout etc.)

public int fbLoginA(final int reqId) {

    runOnMainThread(new Runnable() {
        @Override
        public void run() {

            Facebook lFBInst = null;

            lFBInst = FBHelper.getInstance(mCtx);
            //lFBInst.
            lFBInst.authorize(mCtx
                            , new String[]{"email","publish_stream"}
                            , new LoginDialogListener());
        }
    });

    return 0;
}

 private final class LoginDialogListener implements DialogListener {
        @Override
        public void onComplete(Bundle values) {
            Log.d("Facebook-Example", "onComplete");
            //SessionEvents.onLoginSuccess();
        }

        public void onFacebookError(FacebookError error) {
            //SessionEvents.onLoginError(error.getMessage());
        }

        public void onError(DialogError error) {
           // SessionEvents.onLoginError(error.getMessage());
        }

        public void onCancel() {
            //SessionEvents.onLoginError("Action Canceled");
        }
    }

So it works ok on android 4. But on android 2.3.5 HTC facebook functions dont run properly. onComplete is never called.

SharedPreferences.Editor editor = getPrefs(ctx).edit();
editor.putString("access_token", sFacebook.getAccessToken());

neither works too.

Checking session isSessionValid() always returns false. Cant figure out what is going on :(

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.