I have a certificate I generated using eclipse export.
How can I find the hash key from the certificate for the facebook hash key?
I have a certificate I generated using eclipse export.
How can I find the hash key from the certificate for the facebook hash key?
If I understand you need to generate the key hash with the release certificate, try something like this:
keytool -exportcert -keystore (your release certificate dir) | openssl sha1 -binary | openssl base64
If you run your app without setting the hask key on Facebook, an error message in the logs will display the needed hash key.