Possible Duplicate:
Facebook Android Generate Key Hash
I'm trying to obtain a hash key for using facebook with my android application. I downloaded openssl and put it in java\jre7\bin
Here what I type in the console
C:\Program Files (x86)\Java\jre7\bin>keytool -exportcert -alias androiddebugkey
-keystore C:\Users\morgane\.android\debug.keystore ¦ C:\Program Files (x8
6)\Java\jre7\bin\openssl.exe sha1 -binary ¦ openssl base64
I have this error:
Illegal option: ª
keytool -exportcert [OPTION]...
I don't know what the character ª means and how to fix my error.
By the way is the key necessary to make fb works with an android app?
"C:\Program Files (x8 6)\Java\jre7\bin\openssl.exe"bit in quotes for the shell to accept it. You're in that directory aren't you - why not justopenssl.exe? – Rup Jan 25 at 11:57keytool -exportcert -alias androiddebugkey -keystore C:\Users\morgane\.android\debug.keystore > cert.txtthenopenssl.exe sha1 -binary < cert.txt > cert-sha1.binand finallyopenssl.exe base64 < cert-sha1.binto see where the error really is. (You may need to change the intermediate step paths to somewhere writeable if you're not running as an admin user.) – Rup Jan 25 at 12:16>certpart: e.g.keytool -exportcert -alias androiddebugkey -keystore C:\Users\morgane\.android\debug.keystore > C:\Users\morgane\.android\cert.txt,openssl.exe sha1 -binary < C:\Users\morgane\.android\cert.txt > C:\Users\morgane\.android\cert-sha1.bin,openssl.exe base64 < C:\Users\morgane\.android\cert-sha1.bin– Rup Jan 25 at 13:12