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