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 tried to generate the Keyhash for integrating the Facebook in our app, but when i generated the keyhash through cmd prompt, it can't generate.

C:\Users\DON\.android>keytool -exportcert -alias androiddebugkey -keystore ~/.an
    droid/debug.keystore | openssl sha1 -binary | openssl base64

'keytool' is not recognized as an internal or external command, operable program or batch file.

and another command I use is:

C:\Program Files\Java\jdk1.6.0_20\bin>keytool -exportcert -alias androiddebugkey
     -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

'openssl' is not recognized as an internal or external command, operable program or batch file.

What is the problem?

share|improve this question
first search for the keytool app in your s/m and navigate to that directory and use the command – droidhot Nov 19 '12 at 5:21
Sir @droidhot i can not understand please could u exlpain – rishi Nov 19 '12 at 5:23
'keytool' is not recognized as an internal or external command, shows that C:\Users\DON.android> does not contain keytool.exe – droidhot Nov 19 '12 at 5:24
@droidhot ,sir how to get this keytool.exe in our .android folder – rishi Nov 19 '12 at 5:27
copy paste or simply search for it and use the command from that folder hope and note ~ should be also suplied with the correct location – droidhot Nov 19 '12 at 5:28
show 4 more comments

1 Answer

up vote 0 down vote accepted

using this commaond first you download the this file http://code.google.com/p/openssl-for-windows/downloads/detail?name=openssl-0.9.8k_WIN32.zip , and extract this file and run this commond.

C:\Program Files\Java\jdk1.6.0_20\bin>keytool -export -alias myAlias -keystore C
 :\Users\DON\.android\myKeyStore | C:\openssl\bin\openssl sha1 -binary | C:\opens
sl\bin\openssl enc -a -e 
 xtIm30l*********=
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.