When i try to implement Facebook Connect in my android application i get the following error

11-02 16:41:31.660: D/Facebook-authorize(13194): Login failed: invalid_key:Android key mismatch. Your key "8Ioc4p/jMXoU9Lezug4nzmZfFUg" does not match the allowed keys specified in your application settings. Check your application settings at http://www.facebook.com/developers

i reset the key in the Facebook App and still it does show the same error.

link|improve this question

I noticed in my AndroidManifest.xml, I had: android:launchMode="singleInstance" I never got the key invalid error. But when I removed that line, I started getting the key invalid error. I don't know how or is it related to this error. – Elissa Tong May 3 at 13:41
feedback

8 Answers

up vote 23 down vote accepted

Your key is : "8Ioc4p/jMXoU9Lezug4nzmZfFUg"

Now copy this key and open this URL. And paste this key in Native Android App Which Mark as a green Border.

enter image description here

If any Query Remaining then plz feel free to tell me.

Regards, Mehul Patel

link|improve this answer
hey buddy if u open so many threads they will down vote u :P use the Edit Button to edit ur answers.. on the same one. and thanks a lot :) i will ping u directly if i need some help hope its fine – Harsha M V Nov 3 '11 at 8:33
Ya Sure Any time you want – user647826 Nov 3 '11 at 8:46
feedback

your key :8Ioc4p/jMXoU9Lezug4nzmZfFUg

This key is encrypt by your device so you have we have to tell this key to fb(in ur application which u create in Facebook) user.

Now u have to copy this key in Native App then save it and after some min you can get all access..

If any Query then tell me.!

Thanks

link|improve this answer
how can i set this key to my application. it looks like this is the default debug key for my installation. – Harsha M V Nov 2 '11 at 19:53
feedback

Please check your application page in Facebook and confirm that both keys are same. I think you won't register your app on Facebook

link|improve this answer
feedback

You can use Facebook application in your application so you use this. In that source code for Facebook integration is there.

link|improve this answer
feedback

If the Key is invalid then you have to create the new facebook application on facebook site. it provide you new key use that key into you facebook demo

http://developers.facebook.com/

link|improve this answer
1  
you can also download code for facebook from this link github.com/facebook/facebook-android-sdk – dilipkaklotar Nov 2 '11 at 12:04
feedback

Debug Native Android App key is generated automatically using debug.keystore file located here: ~/.android/debug.keystore. When you are developing your application on multiple machines you should have the same debug.keystore file... Once this done you can paste the debug native android app key to facebook settings page of your app.

link|improve this answer
feedback

You actually do not past this key directly but a base 64 value of this key.

Refer the link https://developers.facebook.com/docs/mobile/android/build/#sig where it explains you how to generate this

link|improve this answer
feedback

Maybe you can help me, because I'm receiving the same problem.

I got a Facebook developer account, I signed up my application and I generated the android key hash correctly(I had to put the password, and I wrote "android", without this "", obviously). But I still get the error(Login failed: invalid_key:Android key mismatch.)

I tried this on my code: Facebook facebook = new Facebook("App ID"); and also this Facebook facebook = new Facebook("Android key hash");. But I still receive the same error. Could somebody help me please? I'm starting to be desperate...

P.S. I used this to generate my android key hash: keytool -exportcert -alias androiddebugkey -keystore C:\Users\Carlos.android\debug.keystore | openssl sha1 -binary | openssl base64

link|improve this answer
I found the problem, was about how Windows works. I got the hash key on the same facebook error(Login failed: invalid_key:Android key mismatch.) – Carlos Alberto Martínez Gadea Jan 26 at 17:36
feedback

Your Answer

 
or
required, but never shown

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