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 have been following this tutorial in order to register my application to use the facebook login.

Everything goes smoothly until the moment I have to extract the string for copy-pasting in the Android Key Has field. I have experience with extracting keys from the debug.keystore as I did this to get the API key for the GoogleMaps.

Here is what is said to be putted in the cmd:

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore 
| openssl sha1 -binary
| openssl base64

They don't say anything about a password but, but when I enter the lines:

cd C:/Program Files/Java/jdk.1.6.0_26/bin/
keytool -exportcert -alias androiddebugkey -keystore C:/Users/Stefan/.android/debug.keystore 

I'm asked for one. I enter the "android" one and it works - I get a big big string - see the screenshot below. I am pretty sure it is hashed by some way and the commands opensssl sha1 -binary base64 should be used to get the right string, but I don't know how exactly. I hope somebody here already went through the same procedure and will share some info how to get the key. Thanks in advance!

Here is a screenshot of the hashed string I get from the cmd

share|improve this question
I found the solution here - helloandroid.com/tutorials/… – Stefan Doychev Jul 26 '11 at 10:02

1 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.