在网上查了指令:
keytool -exportcert -alias 别名-keystore keystore路径 | openssl sha1 -binary | openssl base64
获取debugstroe的hashKey
keytool -exportcert -alias androiddebugkey -keystore C:\Users\.android\debug.keystore | openssl sha1 -binary | openssl base64
打开cmd命令窗口,输入指令,结果不是28位,查看了openssl的版本,1.1.1K
看了很多网上资料要求使用0.9.8K,下载98K 但是我又不想直接改变自己的环境变量于是:
使用下面指令:
keytool -exportcert -alias androiddebugkey -keystore C:\Users\Twelve\.android\debug.keystore | C:\Users\Twelve\openssl-0.9.8k_X64\bin\openssl.exe sha1 -binary | C:\Users\Twelve\openssl-0.9.8k_X64\bin\openssl.exe base64
输入密钥库口令: android
得到了想要的结果