接入facebook登录遇到了需要KeyHash,看了国际友人的视频发现还是他用的竟然是sha 1值,但是填写的时候没办法通过,提示KeyHash最长只能28位,找了好些资料终于解决了,这里记录一下
1、 去https://code.google.com/p/openssl-for-windows/downloads/list下载OpenSSL工具,(需要科学上网)
https://sourceforge.net/projects/gnuwin32/files/openssl/0.9.8h-1/openssl-0.9.8h-1-setup.exe/download?use_mirror=jaist
2、 在C盘根目录下新建一个openssl的文件夹,并将OpenSSL压缩包解压到此文件夹中
3、 找到自己的.keystore文件并在该位置打开CMD
4、 打开CMD ,路径设置到JavaJDK 的bin路径下,执行以下代码:
keytool -exportcert -alias androidkey -keystore android.keystore > c:\openssl\bin\debug.txt
androidkey这里替换为你自己的alias
密码是:你的key密码(执行完后在 C盘的openssl文件夹下生成了debug.txt文件)
5、 打开CMD,路径设置到openssl文件夹下的bin目录(C:\openssl\bin)执行以下代码:
openssl sha1 -binary debug.txt >debug_sha.txt
执行完后在 C盘的openssl文件夹下生成了debug_sha.txt文件
6、 继续执行以下代码:
openssl base64 -in debug_sha.txt >debug_base64.txt
执行完后在C盘的openssl文件夹下生成了debug_base64.txt文件
7、打开debug_base64.txt可得到KeyHash
最终输出:2jmj7l5rSw0yVb/vlWAYkK/YBwx=
网友评论