0

There is no Facebook app installed, the login works. But if the Facebook app is installed, despite I added the key hash app, Facebook developers, getting this error:

Error: SERVER_ERROR: [code] 1349195 [message]: The key hash does not match any stored key hashes.
AmerllicA
  • 29,059
  • 15
  • 130
  • 154

1 Answers1

0

please follow this instructions

Add your development and release key hashes

To generate a development key hash, on Mac, run the following command:

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

On Windows, run this command:

keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64

and you have option ,to add multiple Key Hashes... add multiple generated key hashs.

Elango
  • 272
  • 3
  • 16
  • Login fail with error: Error: SERVER_ERROR: [code] 1349195 [message]: The key hash does not match any stored key hashes. – Balkis Mahfoudh Feb 05 '20 at 09:28
  • Try this ``https://stackoverflow.com/questions/20301025/facebook-key-hash-does-not-match-any-stored-key-hashes`` – Elango Feb 05 '20 at 09:58