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.

Hi friends i wanna to generate Key hash to incorporate FaceBook Application in my Apps.. I am having Open SSL Zip. pl guide me how to generate key..

share|improve this question
What is it that you are trying to accomplish? A hash of friends in facebook or an intent to launch facebook from your app? – AedonEtLIRA Jan 4 '11 at 16:50
1  
I wanna to implement Single Sign On in my apps.. – VenkateshRaghavan Jan 4 '11 at 17:49

4 Answers

In order to generate key hash you need to follow some easy steps.

  1. Download Openssl from: http://code.google.com/p/openssl-for-windows/downloads/list

  2. Make a openssl folder in C drive

  3. Extract Zip files into openssl folder

  4. Copy the File debug.keystore from .android folder in my case (C:\Users\SYSTEM.android) and paste into JDK bin Folder in my case (C:\Program Files\Java\jdk1.6.0_05\bin)

  5. Open command prompt and give the path of JDK Bin folder in my case (C:\Program Files\Java\jdk1.6.0_05\bin).

  6. Copy the code and hit enter

    keytool -exportcert -alias androiddebugkey -keystore debug.keystore > c:\openssl\bin\debug.txt
    
  7. Now you need to enter password, Password = android.

  8. See in openssl Bin folder you will get a file with the name of debug.txt

  9. Now either you can restart command prompt or work with existing command prompt

  10. comes to C drive and give the path of openssl Bin folder

  11. copy the following code and paste openssl sha1 -binary debug.txt > debug_sha.txt

  12. you will get debug_sha.txt in openssl bin folder

share|improve this answer
i am getting the debug.txt as UUS10U Android10UAndroid Debug0‚0*†H†÷ ‚ 0‚ ‚ °_»‡IÏy%sT³hN—]q¥¤¤{‰‚¾@TìÐàqÍœ¨éÑ”a 0.†@½ÀrVÓ¢>½ðùäëÀ{9‹0z¥iç‡+åsâI” and debug_sha.txt as ~hJ1К¡+eK—§¹7 what could be wrong? – bill gates Mar 6 at 9:52

You only need to do this if you want single sign-on. Here's the details though: Key hash for Facebook Android SDK

share|improve this answer

Type this in your terminal (mac)

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

Or this into the console (windows)

keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64

You will have to enter a password. The password is: android

A code will come up and that code is your key hash.

share|improve this answer

Adding to Vizzz's answer if you want to get the actual key run in openssl bin folder

openssl enc -a -e < debug_sha.txt

I guess the detailed steps are for "debugging" purposes

share|improve this answer

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.