Hello
I saw some topics about the need for generating hash key using keytool, but none dealt with trying to view the hash key. is that impossible?
I already created the keystore for my app using keytool. i want to integrate my app with facebook, so i need to somehow reach the hash key that was generated specifically with the keystore.
I saw many people got issues because they tried generating a new hash key using this command:
keytool -exportcert -alias myalias -keystore myKeyStore.keystore | openssl sha1 -binary | openssl base64
but when they try to use facebook it gives them error about not using the right hash key generated with the keystore.
so my question would be:
1- do i need to create a new keystore and use it with the new hash key that comes with it?
or 2- is there a way to view the hash key that was originally generated with my existing keystore?
thanks