在 Android 上导出 Facebook 的签名

发布于 2024-11-30 11:22:44 字数 296 浏览 2 评论 0原文

我正在导出我的应用程序的签名,以便 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

擦肩而过的背影 2024-12-07 11:22:44

将别名的两个单词括在引号中 - 例如 "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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文