没有安装Facebook应用程序,登录可以正常工作。但如果安装了Facebook应用程序,尽管我添加了关键的散列应用程序Facebook developers,但会收到以下错误:
Error: SERVER_ERROR: [code] 1349195 [message]: The key hash does not match any stored key hashes.发布于 2020-02-05 01:13:47
请按照以下说明操作
Add your development and release key hashes
要生成开发密钥哈希,请在Mac上运行以下命令:
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64
在Windows上,运行以下命令:
keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64
您可以选择添加多个密钥散列...添加多个生成的密钥哈希。
https://stackoverflow.com/questions/60060289
复制相似问题