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 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 there is already facebook app on mobile and then the user installs my app the user is never logged in. From what i know i think this might be a problem of single sighn on and i think this is somewhat related with generating proper hash key of the application and using the hash key in facebook application which i used to log into the mobile app.

Please guide me how to create the hash key. I am running ubuntu 10.4.

When i run this command in terminal :- keytool -exportcert -alias .keystore -keystore ~/.android/.keystore | openssl sha1 -binary | openssl base64

I am never prompted for password i am though given the hash key.

Thanks in advance

share|improve this question

4 Answers

Try this:

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

I hope you will get it. I just checked it and I got the prompt for password.

share|improve this answer
i am not using debug keystore to sighn the application.i am creatng a new keystore – abhishek May 13 '11 at 9:31
in my case it is not even asking for the password for androiddebugkeystore... what could possibly be wrong – abhishek May 13 '11 at 9:39
did u type that exactly? check the spaces and all? in case of debugkeystore – Rosalie May 13 '11 at 10:02
did you get that? – Rosalie May 13 '11 at 11:03
yes it is still not asking me any password – abhishek May 13 '11 at 12:13
show 3 more comments

You can use this code block to generate hash key. Put this code block in your onCreate() method.

try {
        PackageInfo info = getPackageManager().getPackageInfo(
                "Your package name", 
                PackageManager.GET_SIGNATURES);
        for (Signature signature : info.signatures) {
            MessageDigest md = MessageDigest.getInstance("SHA");
            md.update(signature.toByteArray());
            Log.d("Your Tag", Base64.encodeToString(md.digest(), Base64.DEFAULT));
            }
    } catch (NameNotFoundException e) {

    } catch (NoSuchAlgorithmException e) {

    }
share|improve this answer
Nothing else worked for me, this did first try. – digiholic Mar 5 at 3:51

Just give the command as:-

keytool -exportcert -alias androiddebugkey -keyst
ore debug.keystore

and give the keystroke password or android or enter

here you have to go to the directory structure till ".android" then run this commnad.In general the path is C:\Users\User-name\.android>

share|improve this answer

Check three parts in your environment.

  1. where is "debug.keystore"?

    find / -name "debug.keystore"

    if you can't find it, check you eclipse or ADT.

  2. what it alias name?

    keytool -list -v -keystore "PATH_TO_DEBUG_KEYSTORE"

  3. Check if installed openssl

    openssl

If everything are ready, it should prompt password asking

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.