Reputation: 2895
I am making an app and I wish to integrate it with facebook.
While working on this I came across:
A name "application signature" which I heard resides in the file debug.keystore and it exists across every application.
The same app key needs to be mentioned in the field "Hash Key" while creating the app on facebook.
My question is how can I generate/view this key ?
Kindly correct me if I am wrong about something.
Thanks in advance.
Upvotes: 0
Views: 3382
Reputation: 1969
The most easiest way to get this key is enable logging inside facebook library and when your application fails copying this key from logcat output. To do this open com.facebook.android.Util
and set to true private static boolean ENABLE_LOG = false;
. Do not forget turn off this back after, because this will can create security issues
Official tutorial with more detailed description and another one way to do this here
Upvotes: 0