在接入FaceBook第三方登录的时候,需要获取Android Hash Key。
Android Hash Key即密钥散列有两种,一种是开发秘钥散列,一种是发布秘钥散列。这里主要介绍如何获取开发秘钥散列Debug Android Hash Key。
步骤如下:
1、到https://code.google.com/archive/p/openssl-for-windows/downloads?authuser=1下载openssl-0.9.8k_X64.zip(电脑64位的),然后解压放在C盘
2、打开命令窗口,进入jre的bin目录()
3、输入如下的命令
keytool -exportcert -alias androiddebugkey -keystore "C:\Users\Administrator\.android\debug.keystore" | "C:\openssl-0.9.8k_X64\bin\openssl" sha1 -binary | "C:openssl-0.9.8k_X64\bin\openssl" base64
便可在结果中看到一个28位字符,那便是Debug Android Hash Key