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 recently got Facebook to work when debugging my application by following the insructions on facebooks developer page on how to export and get the hash key we need to put in the developer portal.

So now this is done, i tried using facebook log in with a exported and signed version of my application. Unfortunately i was not able to get it to work. It would never return a log in session after logging in through the facebook app or web page.

I believe this is due to the keys being difference between the released and signed apk and the apk i use to debug.

Anyone know how to fix this problem?

share|improve this question

1 Answer

up vote 0 down vote accepted

You are correct on the key hash's being different from the debug.keystore and the release signing key. To remedy that, follow the steps on this website here: http://www.helloandroid.com/tutorials/using-facebook-sdk-android-development-part-1

It has a nice tutorial that will fix the issue in almost no time.

The gist of it is:

  1. Download OpenSSl for Windows and extract the .zip to a simple location like: c:\openssl with all the contents of the zip extracted in this folder's root.
  2. Copy your signing key file to your JRE installation's bin folder. For example, in my case: C:\Program Files\Java\jre7\bin
  3. While in the bin folder where you copied the signing key, Press SHIFT+ Right Click -> Open command window here.
  4. Run this command: keytool -exportcert -alias YOUR_ALIAS -keystore YOUR_SIGNING_KEY > c:\openssl\bin\debug.txt
  5. Enter your password for the signing key
  6. Now, navigate to the c:\openssl\bin folder and type in the following commands:

openssl sha1 -binary debug.txt > debug_sha.txt

And then,

openssl base64 -in debug_sha.txt > debug_base64.txt

Done! The debug_base64.txt contains your Key Hash. Copy this in your app console and you are all set.

This sounds lengthy, but you really will be done in literally 4 - 5 minutes. ;-)

share|improve this answer
the keystore file is the file ending in extension .jks right? I am trying to use it in the command line and i keep getting access denied for some reason – Coder_Moler10345 Feb 21 at 13:34
I manage to get the debug.txt to work but now i get debug.txt: No such file or directory openssl: No such file or directory base64: No such file or directory in: No such file or directory debug_sha.txt: No such file or directory – Coder_Moler10345 Feb 21 at 13:47
@Coder_Moler10345: Did it work? – IceMAN Feb 21 at 13:54
No when i run the commend openssl sha1 -binary debug.txt > debug_sha.txt openssl base64 -in debug_sha.txt > debug_base64.txt i get: No such file or directory openssl: No such file or directory base64: No such file or directory in: No such file or directory debug_sha.txt: No such file or directory – – Coder_Moler10345 Feb 21 at 14:56
@Coder_Moler10345: Oh oh oh. I feel extremely stupid now. Please check the correction. They are actually two different commands. But they were joined together when I used the quote block in my post. I am so sorry fella. :-( – IceMAN Feb 21 at 15:00
show 4 more comments

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.