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 write with Corona SDK a mobile application that integrates with Facebook. So I created a Facebook application that App ID I use for integration.

In login session from mobile device, I received a error with response "android key ....". The solution for the problem was to set a "Android Key Hash" in "Native Android App" of the application. But I don't understand exactly what does mean "Android Key Hash" and what I did. Can somebody pleases explain me about?

Could I still receive the same error if I run an application on other device or this "Android Key Hash" is unique for all my application's users?

share|improve this question

1 Answer

up vote 2 down vote accepted

You wont get an error provided you use the correct hash key. You can generate one by using this command:

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

If you are getting an error at that point try using a non debug keystore to sign and/or take a look at this post from the Corona SDK forums; http://developer.coronalabs.com/forum/2012/03/20/facebook-and-android-key-hash

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.