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 use the single sign on in my application (http://developers.facebook.com/docs/mobile/android/build/). It seems working fine on the emulator (i log in succefully and get the access_token). But in my Nexus S, the webview shows up, but I always get "login failed".

There is my code:

((Button)findViewById(R.id.BtnFacebook)).setOnClickListener(new OnClickListener(){

        public void onClick(View v) {

            //startActivity(intentLoginFacebook);

            facebook.authorize(Login.this, new String[] {"user_about_me","user_activities","user_birthday","user_education_history","user_events","user_groups","user_hometown","user_interests","user_likes","user_location","user_religion_politics","user_status","user_website","user_work_history","read_requests","read_stream","friends_events","email","create_event","manage_friendlists","offline_access","rsvp_event"}, new DialogListener() {
                @Override
                public void onComplete(Bundle values) {

                    String id = "";
                    String access_token = facebook.getAccessToken();
                    System.out.println("ACCESSTOKENNNN:" + access_token);

                    try {
                        String response = facebook.request("me");

                        JSONObject obj = new JSONObject(response);
                        id = obj.getString("id");
                        System.out.println("response: "+response);

                    } catch (IOException ex) {
                        Log.d("Facebook", ex.getMessage());
                    } catch (Exception e) {
                        Log.d("Facebook", e.getMessage());
                    }


                    //Verification du login/password
                    new LoginFacebook().execute(id,access_token);
                    System.out.println("IDDDDDDDD:" + id);              

                }

                @Override
                public void onFacebookError(FacebookError error) {
                    Toast.makeText(getApplicationContext(), "Facebook error: login failed", Toast.LENGTH_LONG).show();

                }

                @Override
                public void onCancel() {
                }

                @Override
                public void onError(DialogError e) {
                    // TODO Auto-generated method stub
                    Toast.makeText(getApplicationContext(), "Login failed", Toast.LENGTH_LONG).show();

                }
            });

        } 
            });

Thanks for your help!

share|improve this question
Clear the browser cookies and the run the app again with clean build the project – Arpit Garg Oct 11 '11 at 16:17
didn't work.... – user420574 Oct 11 '11 at 16:26
@user420574 Can you explain how u created Hash key.. Problem will be with Hash Key.. – Venky Oct 11 '11 at 17:08
With the command given by facebook: keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64 – user420574 Oct 11 '11 at 22:40

1 Answer

Most likely the SDK stores your access_token and expires_in paramters in SharedPreferences. You need to log the detailed error. If you get OAuth exception on an API call you need to delete access_token from SharedPreferences and simply reauthorize.

hope this helps

share|improve this answer
The SDK doesn't store the access_token in SharedPreferences.. – user420574 Oct 13 '11 at 18:54

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.