我从face收到一条消息,如下所示:
We have re-reviewed your Privacy Policy and it is now in compliance.
However, as webview Facebook is deprecated, we will need you upgrade your version 8.2.0 or later of the Facebook SDK for Android.
To avoid a disrupted user experience, please follow this documentation for your Facebook login to work again: https://developers.facebook.com/docs/facebook-login/android/deprecating-webviews
Once successfully upgraded, do let us know and we will review your application in totality.因此,当我尝试登录facebook时,我发现了以下错误:
I/System.out: onError
E/LoginActivity: SERVER_ERROR: [code] 1349195 [message]: The key hash does not match any stored key hashes. Go to https://developers.facebook.com/docs/facebook-login/android for more information.即使在我更新了FB登录包之后:
implementation('com.facebook.android:facebook-login:[5,6)') {
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude group: 'com.android.support', module: 'support-annotations'
}至:
implementation('com.facebook.android:facebook-login:12.0.1') {
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude group: 'com.android.support', module: 'support-annotations'
}我发现了同样的问题..。
我希望有人能帮我解决这个问题。
发布于 2021-10-31 10:14:10
错误消息提示您打开https://developers.facebook.com/docs/facebook-login/android并按照指南操作。所以我打开了这个链接,我想你需要检查步骤6:“为你的应用程序提供开发和发布密钥散列

https://stackoverflow.com/questions/69785007
复制相似问题