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 developing an Android application using Facebook Integration for SSO, I have tested the application and it is just working fine on emulator, now when I test it on real device (Samsung Galaxy S3) I get "Facebook error" invalid key RuUnRoM+ySb9AWKHAb5slfvneeh.

I read other answers on similar questions here on SO saying that add that key to app settings on facebook and it should work but it is not working for me, any suggestions?

Moreover I am not sure form where did this key came from, the one I generated using the application's key store and keytool is lW2TM46BWUoKczD3t/ohbjx8v0A=.

Thanks.

share|improve this question

1 Answer

Ok, Solved it by using

C:\Users\Me>keytool -exportcert -alias my_key -keystore my.keystore -storepass PASSWORD > mycert.bin

C:\Users\Me>openssl sha1 -binary mycert.bin > sha1.bin

C:\Users\Me>openssl base64 -in sha1.bin -out base64.txt

Source: Original Answer

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.