Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm very sorry to be asking you but I can't figure out how to get the Key Hash required to use the Facebook Android SDK. I am very new at this and figured out that i can use keytool with these commands:

keytool -exportcert -alias [alias] -keystore [keystore] | openssl sha1 -binary | openssl enc -a -e

The only problem is that I have no idea where to insert this, i tried through command windows (win7) and I tried opening the file keytool.exe. Again, this is probably really simple and I just cant find any information made dumb enough for me about this.

Could you reach out your hand?

share|improve this question

4 Answers

up vote 21 down vote accepted

You can install Open SSL from here , that should make your command work

share|improve this answer
1  
For others: It is way more simpler if you keep the keytool and OpenSSL files in the same folder. – Anders Dec 17 '10 at 9:40
2  
yes, just copy the content of the openssl archive in your jdk1.x.0 folder – maephisto Dec 19 '11 at 11:58
+1 Its working. I am now able to run the command with Openssl. – Paresh Mayani May 22 '12 at 11:31

I created a batch script facebookkeydebug.bat, which return desired Facebook key hash. Just edit the script, set correct paths, keystore name and run it.

:: Getting Android key hash for Facebook app on Windows
:: Requirement: OpenSSL for Windows (http://code.google.com/p/openssl-for-windows/downloads/list)
:: Usage: set paths and run facebookkeydebug.bat

@echo Exporting keystore cert
keytool -exportcert -alias androiddebugkey -keystore C:\Users\myusername\.android\debug.keystore -storepass android -keypass android > debug.keystore.bin

@echo Converting to sha1
C:\PROGRAMS\openssl-0.9.8k_X64\bin\openssl sha1 -binary debug.keystore.bin > debug.keystore.sha1

@echo Converting to base64
C:\PROGRAMS\openssl-0.9.8k_X64\bin\openssl base64 -in debug.keystore.sha1 -out debug.keystore.base64

@echo Done, Android hash key for Facebook app is:
C:\PROGRAMS\openssl-0.9.8k_X64\bin\openssl base64 -in debug.keystore.sha1
@pause

EDIT: I published a repo with some batch scripts for signing and getting cert keys on Windows: https://github.com/petrnohejl/Android-Scripts

share|improve this answer
Thanks peno! This works perfectly for me! – Zennichimaro Aug 24 '12 at 5:07
Thanks a lot !! Saved a lot of my time :) – sandyiscool Dec 14 '12 at 17:52

To make things easier -

keytool.exe -list -alias androiddebugkey -keystore debug.keystore -v

this should provide you with the fingerprints needed, without the hassle of installing openssl.

e.g.

Certificate fingerprints:
         MD5:  1A:5E:AA:CB:1A:CF:68:F0:8B:DA:D8:BC:EE:4F:BF:EE
         SHA1: D2:89:D1:5A:BC:F8:E3:E5:62:4D:DD:20:DD:96:CD:AB:51:A1:C1:7F
         Signature algorithm name: SHA1withRSA
         Version: 3
share|improve this answer

You have to open a command prompt window. Go to start->run and type 'cmd' and hit enter. Then you have to navigate to the folder where keytool is (unless it's in your path), and then type that command.

That is, assuming that command is for windows and not linux.

share|improve this answer
Allright! I did a stupid mistake, I navigated one folder from where the keytool was. So, I got a lot of jibberish in return and didn't get the opportunity to enter the openssl. Is this also a program I have installed? – Anders Dec 3 '10 at 17:13
Keytool I think is installed with the java jdk. I'm not sure if it's in your path though, I don't work on windows. Also, I'm not sure if openssl is installed by default either. Again, that MIGHT be the linux instructions. Are you sure that's the only thing the document says? It doesn't say what you need to have installed, etc – Falmarri Dec 3 '10 at 17:19
I navigated myself to the keytool file, and the first command worked. But, when using the openssl i got an error stating that the program couldn't be found. The instructions are here: github.com/facebook/facebook-android-sdk/blob/master/README.md under "single sign-on" – Anders Dec 3 '10 at 17:24
Try installing openssl – Falmarri Dec 3 '10 at 21:03
6  
Yeah openssl ISNT installed by default on Windows, facebook sdk tutorial doesn't mention this – Blundell Jun 26 '11 at 13:58

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.