如何获得 Android 密钥库文件的 "SHA1 fingerprint"?
How can I get an Android keystore file's "SHA1 fingerprint"?
好的,我需要一些认真的帮助。所以我想在我的游戏中使用一些尚未发布的 Google Play 服务。我使用 Unreal Engine 制作我的游戏。我按照this documentation生成了keystore文件,但是我需要SHA1指纹,获取不到。
我尝试关注 this website,但我不断收到此错误:
keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect
java.io.IOException: Keystore was tampered with, or password was incorrect
有谁知道这个错误,因为我开始对这个愚蠢的关键东西很生气。
您的 Android 密钥库通常有一个密码(例如生产密钥库),当您调用 keytool -list -v ....
时,应该会有一个提示,要求您输入所选密钥库的密码。如果正确,它将给出该密钥库的必要信息(SHA-1 等)。可以参考this Whosebug question
好的,我需要一些认真的帮助。所以我想在我的游戏中使用一些尚未发布的 Google Play 服务。我使用 Unreal Engine 制作我的游戏。我按照this documentation生成了keystore文件,但是我需要SHA1指纹,获取不到。 我尝试关注 this website,但我不断收到此错误:
keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect
java.io.IOException: Keystore was tampered with, or password was incorrect
有谁知道这个错误,因为我开始对这个愚蠢的关键东西很生气。
您的 Android 密钥库通常有一个密码(例如生产密钥库),当您调用 keytool -list -v ....
时,应该会有一个提示,要求您输入所选密钥库的密码。如果正确,它将给出该密钥库的必要信息(SHA-1 等)。可以参考this Whosebug question