keytool with Android Facebook SDK(带有 Android Facebook SDK 的 keytool)
问题描述
我只是想要一些确认.
我在 windows 上开发
I'm developing on windows
我正在尝试将 facebook 集成到应用程序中,但 SDK 文档说我需要导出签名"
I'm attempting to integrate facebook into an app and the SDK documentation says I need to 'export a signature'
从这里:http://developers.facebook.com/docs/guides/手机/#android
所以它说运行这个命令:
So it says run this command:
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64
首先我必须下载 openssl:OpenSSL
First I had to download openssl: OpenSSL
现在上面的命令,我假设应该转换为:
Now the command above, I assume should be converted to:
"C:path ojavakeytool" -exportcert -alias your_alias -keystore "C:path oyourkeystorekeystore.name" | "C:path oopenssl_installinopenssl" sha1 -binary |"C:path oopenssl_installinopenssl" base64
- 所以您想要安装在最新 Java 安装文件夹中的 keytool?
- 您希望别名是您用于在 eclipse 中正常创建 apk 的别名的名称吗?
- 您希望密钥库成为您在导出 Android 应用程序时使用的那个?
- 您希望 openssl 成为您刚刚安装的那个
因此,一旦我完成此操作,它就会要求输入密码:(它会在我输入密码时显示密码)
So once I've done this it asks for a password: (it shows the password as I'm typing it)
如果我输入正确的密码,我会得到
If I enter a correct password I get
'zR2tey1h9kqPRSW/yEYEr0ruswyD='(改为公开)
'zR2tey1h9kqPRSW/yEYEr0ruswyD=' (changed for public)
但是如果我输入了错误的密码,它仍然会以
but if I enter an incorrect password it still returns me a code in the form of
'ga0RGNYHvTR5d3SVDEfpQQAPGJ1='?
'ga0RGNYHvTR5d3SVDEfpQQAPGJ1='?
所以是的,我只是在寻找我做正确事情的确认,这是预期的输出
So yeah, was just looking for a confirmation that I'm doing the right thing, and this is the output expected
推荐答案
是的,我认为你的做法是正确的.我也执行此命令并将此哈希放入我的 fb 应用程序中,并且它可以正常工作.
yes you are doing it in a right way i think.i also execute this command and put this hash in my fb app and its works properly.
这篇关于带有 Android Facebook SDK 的 keytool的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有 Android Facebook SDK 的 keytool
基础教程推荐
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01