facebook - Unable to generate key hashes for my android application -
i trying generate development key application using link:
https://developers.facebook.com/quickstarts/1561810364100201/?platform=android
i have installed open-ssl 0.9.8[x64] on system, performed restart said still following error on dos-prompt:
openssl not recognized internal or external command, operable program or batch file."
i must tell command giving :
keytool -exportcert -alias androiddebugkey -keystore %homepath%\.android\debug.keystore | openssl sha1 -binary | openssl base64
my openssl installed in : c:\openssl\bin\openssl.exe
my system configuration: os - win 8.1[x64]
i tried no of links given here on stack-overflow none seemed work me.
please guide me doing wrong.
response awaited. thanks.
you can try following:
keytool -exportcert -alias androiddebugkey -keystore "%homepath%\.android\debug.keystore" | "c:\openssl\bin\openssl" sha1 -binary | "c:\openssl\bin\openssl" base64
Comments
Post a Comment