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 trying to integrate the official Facebook sdk with my android app. I am following this link - https://developers.facebook.com/docs/guides/mobile/

Everything is fine until I come to the step - exporting the signature for your app Here they ask us to run this command :

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

When I run this I get a huge pattern containing all sorts of characters & symbols I am confused that which one is my requires String.

Please help

share|improve this question

3 Answers

I blogged about it once, here. It also has a sample project.

I think it should solve your issues.
if you're still unsure, revert.

share|improve this answer

From the keytool documentation:

If no file is given, the certificate is output to stdout.

Same thing for openssl: the output goes to standard output.

If you want to save the output in a file, just redirect the output. On most operating systems, this si done with >

keytool ... | openssl base64 > key.cert
share|improve this answer

Its the complete string you have to use.

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.