1

我得到了 md5 证书指纹。当我转到 Google API 控制台,然后创建一个新的 android 密钥时,我输入了我的 md5、一个逗号、我的包名,然后按生成。我得到这个错误Your input was invalid,为什么?

4

2 回答 2

5

您需要使用分号而不是逗号分隔 SHA1 密钥和包名称。

每行一个 SHA1 证书指纹和包名称(用分号分隔)。示例:45:B5:E4:6F:36:AD:0A:98:94:B4:02:66:2B:12:17:F2:56:26:A0:E0;com.example

于 2013-03-31T08:46:17.897 回答
2

您需要提供您的 SHA1 指纹而不是 MD5 指纹,并且您的 android 应用程序包名称以分号分隔。

获取 SHA1 和 Md5 指纹有两种方法 1. 使用 Eclipse

Select window option and click on preferences.
There is popup widow in which select Android->Build
Here you find your MD5 and SHA1 fingerprint and location of debug.kestore.
  1. 打开命令提示符并导航到安装 java 的 bin 文件夹比使用以下获取指纹列表。

    keytool -list -v -keystore debug.keystore

通常对于 Windows,您的 debug.kestore 可以在 C:\Users\.android 目录中找到。

于 2013-09-07T09:11:13.137 回答