在 Android 上导出 Facebook 的签名
我正在导出我的应用程序的签名,以便 Facebook 可以使用它来确保用户仅与 Android 上的我的应用程序进行通信。我正在使用以下命令:
keytool -exportcert -alias my alias -keystore /Where/is/my/Keystore | openssl sha1 - 二进制 | openssl base64
我有一个问题:我的别名有两个单词,这两个单词之间有一个空格。我的别名就像这样“我的别名”。要将此命令放入终端,我必须在该空间中输入任何符号,例如“_”“*”....?
谢谢
I am exporting the signature for my app so that Facebook can use to ensure users are only communicating with my app on the Android. I´m using this command:
keytool -exportcert -alias my alias -keystore /Where/is/my/Keystore | openssl sha1 -binary | openssl base64
I have one question: My alias name has two words and between these two words there is a space. My alias is like this "my alias". To put this command in the terminal I have to put any symbol for this space something like "_" "*"....?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将别名的两个单词括在引号中 - 例如
"my alias"
- 或使用反斜杠转义空格:my\ alias
Either wrap the two words of the alias in quotation marks -- e.g.
"my alias"
-- or use backslash to escape the space:my\ alias