Android Key Hash

前端 未结 2 1232
没有蜡笔的小新
没有蜡笔的小新 2021-01-30 14:24

Hi friends i wanna to generate Key hash to incorporate FaceBook Application in my Apps.. I am having Open SSL Zip. pl guide me how to generate key..

相关标签:
2条回答
  • 2021-01-30 14:39

    Type this in your terminal (mac)

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

    Or this into the console (windows)

    keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64
    

    You will have to enter a password. The password is: android

    A code will come up and that code is your key hash.

    0 讨论(0)
  • 2021-01-30 14:40

    In order to generate key hash you need to follow some easy steps.

    1. Download Openssl from: http://code.google.com/p/openssl-for-windows/downloads/list

    2. Make a openssl folder in C drive

    3. Extract Zip files into openssl folder

    4. Copy the File debug.keystore from .android folder in my case (C:\Users\SYSTEM.android) and paste into JDK bin Folder in my case (C:\Program Files\Java\jdk1.6.0_05\bin)

    5. Open command prompt and give the path of JDK Bin folder in my case (C:\Program Files\Java\jdk1.6.0_05\bin).

    6. Copy the code and hit enter

      keytool -exportcert -alias androiddebugkey -keystore debug.keystore > c:\openssl\bin\debug.txt
      
    7. Now you need to enter password, Password = android.

    8. See in openssl Bin folder you will get a file with the name of debug.txt

    9. Now either you can restart command prompt or work with existing command prompt

    10. comes to C drive and give the path of openssl Bin folder

    11. copy the following code and paste openssl sha1 -binary debug.txt > debug_sha.txt

    12. you will get debug_sha.txt in openssl bin folder

    0 讨论(0)
提交回复
热议问题