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'm pulling my hair out here. I've been trying to get any of the Facebook APIs working in my Android app to no avail.

I've tried the official SDK which just gives me LogCat errors such as:

04-26 15:27:06.663: DEBUG/Facebook-authorize(5299): Login failed: invalid_key

although this is followed by:

04-26 15:27:06.710: DEBUG/FacewebAuthentication(5306): authentication succeeded

I don't know how to make use of the FacewebAuthentication and so the onFacebookError() method is just always called.

This is when I gave up on the official api and decided to try fbrocket.

But after trying to use it with the same code, FbRocket gives me:

facebook server error 104 + incorrect signature

I can't get FbConnect to compile properly in Eclipse.

As for Easy Facebook Android SDK, I managed to get it to post to my status ONCE but since then it hasn't been able to do anything and just always reaches the OnError() function.

I just want to be able to post to the wall and maybe leverage the friends either by REST or Graph API.

Anyone have any tips/tutorials on how to use any of these APIs because I am at a complete dead end.

Thank you for your time,

Infiniti Fizz

share|improve this question

1 Answer

I think what you are seeing are the errors if the App hasn't been configured on the Facebook web site with it's key hash. Here are the docs from the Facebook web site:

https://developers.facebook.com/docs/guides/mobile/#android

Something to note, is to be sure to use the correct key hash. So if you're testing in debug use the command line in the docs above that uses your debug.keystore keys, but once you are ready to push into production you have to use your production signing key in the command:

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

Hopefully I'm guessing the source of the problem correctly.

share|improve this answer
Hi Ryan, thanks for the reply but even if the hash is the problem, I don't know how to fix it, I've been trying to get that working for about the last month. I've used command prompt (Im on win7), cygwin and tried all the different combinations of -exportcert -export and different passwords to the keystore that everyone is saying but it always comes back with invalid_key, I don't seem to be able to get it to work. That's when I started looking at those other APIs which don't use the hash and just use the app Secret and APP ID etc but as I said I've ran into problems with all those as well :( – Infiniti Fizz Apr 26 '11 at 17:25
1  
It looks like you're not the only one fighting this issue. This post recommends uninstalling the Facebook app on the phone and seeing if the SDK works w/out single sign-on: github.com/facebook/facebook-android-sdk/issues/191 Some other folks are saying that they can't get the keytool to work on Win7, but works fine on Linux/Mac: github.com/facebook/facebook-android-sdk/issues/140 I'm doing dev on a Mac, so I haven't tried generating on Windows. – Ryan Apr 26 '11 at 18:04
Do you have the error message or exception for the OnError() on the Easy Facebook Android SDK? – Ryan Apr 26 '11 at 18:07
Yeah I've read through those people who say it doesn't work on Win that's why I tried Cygwin like they said. Woah! I've got the easy facebook android sdk working now, I had made a mistake and not put a website url in with an index like the EFAS author says to do (my bad!). I've so far got it to log in and post a status, I'll continue to try further! Thanks for all the help Ryan! – Infiniti Fizz Apr 26 '11 at 20:43

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.