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 a problem when I want to publish my android application with facebook integrated. I signed my app with eclipse, and used "keytool -exportcert -alias androidreleasekey -keystore MyReleaseKeystore.keystore | openssl sha1 -binary | openssl base64" in terminal to generate a release key, and I added in "Native Android App" configuration. If I try to log in fb via application I received dialog with nothing.

  1. The path to keystore file is correct because keytool asked me for password.
  2. I used the same keystore to sign apk in eclipse and to generate fb hash. Password is correct.
  3. I copied generated hash to fb developer console.

When I tested with debugkey, all work fine. I had a problem with hash in debug mode but I could have turn on debugging in facebook sdk Util class and check in logcat the correct hash but in release apk this trick did not work (I could not see any error).

Could anyone help me?

share|improve this question

1 Answer

Check the below link. Here he make a Facebook app in a very easy manner. And also handle the error which you describe above. http://uwanttolearnandroid.blogspot.com/

Or if you have no time than i give you small trick after that you make signed apk it work. Now open You Facebook Library and here is a class Facebook.java. find " private static final int DEFAULT_AUTH_ACTIVITY_CODE = 32665;" and change its value to -1. After changing it look like. " private static final int DEFAULT_AUTH_ACTIVITY_CODE = -1;" Now clean project and if show error in Facebook.java leave and make your signed apk. Now it work 100%. enter image description here

share|improve this answer
I know about this trick but I would like to avoid turining off SSO. – PioBab Sep 29 '12 at 17:58
I see that there is also problem with debug mode, I could not read hash from logcat after turning on loging in Util class. Do you suggest that this is coused by new facebook update? – PioBab Sep 29 '12 at 19:22
Than u can use this way. protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode == RESULT_OK) { if(requestCode == MyConstants.FACEBOOK_DEFAULT_AUTH_ACTIVITY_CODE){ facebook.authorizeCallback(requestCode, resultCode, data); } } } In above code MyConstants.FACEBOOK_DEFAULT_AUTH_ACTIVITY_CODE = 32665; – Hafiz Waleed Hussain Sep 29 '12 at 19:23
I wrote in the problem description that this worked in debug mode but in release no. – PioBab Oct 2 '12 at 17:55

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.