SHA-1 fingerprint of keystore certificate

前端 未结 30 3109
长发绾君心
长发绾君心 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:14

    I saw lots of posts about this issue, so I will keep it simple + examples.

    To get the SHA1 for ClientID for Sign In with Google+ and more actions:

    General Form:

    keytool -list -v -keystore  -alias 
    

    For Debug, replace with your debug.keystore path, for Example :

    keytool -list -v -keystore C:\Users\DAVID\.android\debug.keystore -alias androiddebugkey
    

    Password: android

    For Release, replace with your keystore path and alias password, for Example :

    keytool -list -v -keystore C:\ProjectsData\keystore\my-release-key.keystore -alias alias_name 
    

    Password: Your alias password.

提交回复
热议问题