SHA-1 fingerprint of keystore certificate

前端 未结 30 3033
长发绾君心
长发绾君心 2020-11-21 23:36

Is the method for getting a SHA-1 fingerprint the same as the method of getting the a fingerprint? Previously, I was running this command:

30条回答
  •  既然无缘
    2020-11-22 00:20

    For local you get easily sha1 from android studio but for live please check below url :

    Facebook Android Generate Key Hash

    We mostly not done below steps so please check the link which is 100% correct.

    8) If you 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) get back 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

    13) Again copy following code and paste

    openssl base64 -in debug_sha.txt > debug_base64.txt
    

    14) you will get debug_base64.txt in openssl bin folder

    15) open debug_base64.txt file Here is your Key hash.

提交回复
热议问题