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 am building an android app that uses facebook connect for users to log in, however, it is working fine when facebook native app not present but it shows login error when native app present ? it works fine when facebook loaded with webview

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

            Toast.makeText(Login.this, "Server connection failed",
                    Toast.LENGTH_SHORT).show();
        }

        public void onError(DialogError error) {
            SessionEvents.onLoginError(error.getMessage());
            Toast.makeText(Login.this, "Server connection failed",
                    Toast.LENGTH_SHORT).show();
        }

i am getting "server connection failed" message ? how to solve please help

share|improve this question
r u facing problem with login webview? webivew stops without loading anything or some other error? – Andro Selva Feb 13 '12 at 11:09

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.