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 wanna to create hash key for Single Sign On Appliction in FaceBook.. If i enter this Commands in Command prompt

C:\Users\FSSD6>keytool -exportcert -alias androiddebugkey -keystore ~/.android/d ebug.keystore | openssl sha1 -binary | openssl base64

i am getting error ::

'openssl' is not recognized as an internal or external command, operable program or batch file. what can i do for it..

I am having my openssl bin file in location (C:\Users\FSSD6\Desktop\openssl-0.9.8k_WIN32\bin) and i am having my keystore in ( C:\Users\FSSD6.android\debug.keystore)

Please help me..thanks in Advance...

share|improve this question

4 Answers

up vote 1 down vote accepted

Make sure the openssl bin directory is in your path or, alternatively, specify the full path when trying to run it.

share|improve this answer
i also face this problem..but i dint get opesssl,i search for this but did'nt get. github is installed on my pc, i get its openssl file ,is it useful? – nimi Jan 31 '11 at 13:00

openssl is not in your path. Try:

C:\Users\FSSD6>keytool -exportcert -alias androiddebugkey -keystore ~/.android/d ebug.keystore | C:\Users\FSSD6\Desktop\openssl-0.9.8k_WIN32\bin\openssl sha1 -binary | C:\Users\FSSD6\Desktop\openssl-0.9.8k_WIN32\bin\openssl base64

Or add C:\Users\FSSD6\Desktop\openssl-0.9.8k_WIN32\bin to your PATH.

share|improve this answer
Thank u very much for ur reply..Hope it vil work.... – Venkatesh Jan 6 '11 at 9:40

I have got the solution for getting hash key on android.

C:\Documents and Settings\Administrator>cd .android

C:\Documents and Settings\Administrator\.android>keytool -exportcert -alias andr
oiddebugkey -keystore ~/.android/debug.keystore | "C:\Documents and Settings\Adm
inistrator\.android\openssl\bin\openssl" sha1 -binary | "C:\Documents and Settin
gs\Administrator\.android\openssl\bin\openssl" base64
3ZLW/TAqPavR43aZh79aejFQDOdka8=

C:\Documents and Settings\Administrator\.android>
share|improve this answer

Yours;

C:\Users\FSSD6>keytool -exportcert -alias androiddebugkey -keystore ~/.android/d ebug.keystore | openssl sha1 -binary | openssl base64

Must be;

C:\Users\FSSD6>keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | C:\Users\FSSD6\Desktop\openssl-0.9.8k_WIN32\bin\openssl sha1 -binary | openssl base64

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.