Facebook Key Hash

Hi, does anyone know the best way to obtain this key for us Unity developers? All of the tuts on this subject are for dealing with Eclipse directly. Thanks.

Here is the answer I found that I believe works.

Never do it on Mac, but here are some advices:
1.You need OpenSSL. Install it. In Windows I just extract zip file, then copy three file include openssl.exe in bin folder to jdk’s bin folder (where keytool is), don’t know how it work on Mac.
2.Copy file keystore what you want to get key hash to jdk’s bin folder. My keystore is debug.keystore (because I’m still in test, I don’t want to use the main keystore).
3.Using command line to go to jdk’s bin folder (In Windows, I just Run → cmd → type cd %JAVA_HOME%)
4.Type this command:
keytool -exportcert -alias alias_name -keystore sample_keystore.keystore | openssl sha1 -binary | openssl base64
In my case (debug.keystore):
keytool -exportcert -alias androiddebugkey -keystore debug.keystore | openssl sha1 -binary | openssl base64
then enter password for debug.keystore: android (without password, the key hash’s still generated and the same as with password, don’t know why).
You’ll get some string with “=” character at the end. Go to your app setting → mobile → fill that key hash (include “=”) to Android key hash.

a photo that sums up everything you get your correct hash key and add the facebook developer panel, so you can use with your application along with your facebook project

was worth so I finally find my key hash on unity project.

http://imageshack.com/a/img835/6348/zklz.png