Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
possible duplicate of key hash for android-facebook app – Igy Aug 14 '12 at 17:44

2 Answers

up vote 1 down vote accepted

You have to create a keystore, read on google dev. You can signature your app with this keystore

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.