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.

This question already has an answer here:

Step 2: Create a new Signed APK, transfer to your device and install. If it is already installed, naturally, it will prompt.

Step 3: With your DDMS (Logcat) running and your device connected to the computer, run the application and keep looking for a key mismatch warning. That warning has the actual Hash Key. Copy that key, go to your Facebook Developer page and add the new key to the list. i have alrady hash key in my fb dashboard.

i try these steps but i haven't get any key in log cat its simple key mismatch. plz hlp me.

share|improve this question

marked as duplicate by IceMAN, KevinDTimm, Igy, Peter O., Graviton Feb 18 at 2:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

have you read the tutorial on the Facebook developers website?

you need to sign your app. the way to do this is to run this on Linux/Mac

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

or this on Windows:

keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64

as shown on the Getting Started manual

share|improve this answer

I have just written a post about this problem. Take a look at http://www.kodermac.com/app-is-misconfigured-for-facebook-login/ it just might help you out.

share|improve this answer
Please give an abstract at least, or (if not too long) post it here. Web pages have the habit of dissapearing... – vonbrand Feb 15 at 19:10

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