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.

Key and Certificate Management Tool: manages a keystore (database) of cryptographic keys, X.509 certificate chains, and trusted certificates.

learn more… | top users | synonyms

1
vote
1answer
373 views

Facebook Android - Key Hashes validation

I have created key hashes as described here (in the end of step 4):- They tell password is android It is correct for debug.keystore but I have distr.keystore with different password Both passwords ...
0
votes
0answers
60 views

Is it possible to get different key hashes executing the same keytool command?

I'm integrating an Android app with Facebook. I got it working last week, two days ago it decided it was enough, and since then I cannot get it working. I have googled it, but I only find tutorials ...
1
vote
1answer
254 views

Key hash not being generated

I was trying to get the key hash from my Android app. Facebook SDK 3.0 gave the following code: keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 ...
0
votes
2answers
415 views

Facebook android hash key error while logging in

I have created a simple android app and signed it using the Eclipse export method. Then I use the export cert command of keytool. keytool -exportcert -alias my_alias -keystore ...
0
votes
1answer
167 views

keytool md5 hash ascii?

Im having trouble to get the md5 hash (ascii) from my keystore, I just get a hex fingerprint but don't know how to get the right ascii md5 to put on facebook android app. I just read a lot about ...
-1
votes
1answer
127 views

signing my application using keytool

well i am stuck on this step too $ keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64 Enter keystore password: android please ...
0
votes
1answer
902 views

Hash Key Facebook API. Android for release mode not debug. MAC OS

Well.. first of all, sorry for my english.. The api facebook works perfectly in the emulator but when i put it on a mobile it doesnt work.. just open and close the window.. so.. I found this 2 ...
5
votes
2answers
352 views

Keytool does not ask password (using Facebook lib with android)

I run the script below like Facebook said. There is no compiling problem. The problem is it never gives me a password question after process finished and according to facebook documentation it means ...
0
votes
2answers
2k views

Unable to use keytool and OpenSSL for Facebook Android SDK installation

I'm trying to create a Facebook integrated Android app, but trying to use Facebook's Android SDK is tiring. Here's the tutorial I'm following. I'm stuck on the step Using the Keytool. I've searched ...
0
votes
3answers
3k views

find hash key for android facebook app [duplicate]

I have a certificate I generated using eclipse export. How can I find the hash key from the certificate for the facebook hash key?
3
votes
1answer
673 views

Whats the proper keytool command to get facebook app signature on android?

I am trying to use openssl to export the key for my app. I followed the facebook developers guide but I am stuck when it comes to the keytool command. Facebook has it this way: keytool -exportcert ...
0
votes
1answer
844 views

Keytool facebook app for android not working on device

I've been trying for 4 hours to discover how to use the keytool stuff. My app works so well in the emulator. I've tried almost all of tutorials and tips in StackOverflow, Google and others. Now, I'm ...
4
votes
2answers
4k views

keytool with Android Facebook SDK

I just want some confirmation. I'm developing on windows I'm attempting to integrate facebook into an app and the SDK documentation says I need to 'export a signature' From here: ...
5
votes
4answers
8k views

Generating hash key for app using facebook sdk

I am using facebook sdk for login into my application. The application runs fine on htc devices. The applicatioin also works fine on samsung devices if there is no facebook app pre installed but if ...
15
votes
11answers
29k views

How can I find and run the keytool

I am reading an development guide of Facebook Developers at here It says that I must use keytool to export the signature for my app such as: keytool -exportcert -alias androiddebugkey ...