Invalid key hash. The key hash 8392849ZvfdjHakw2849H245738wue0 does not match any stored key hashes. Configure your app key hashes at http://developers.facebook.com/apps/ APP-ID
If you are getting the above error message while trying to log in to an App using Facebook App then the reason is that your key hash is not correct, just regenerate it and update it on the App's Developers console.
To get the Key Hash all you need to do is just need to copy the below code in onCreate() method of your launch Activity Class and watch the output in Android Studio LogCat,
FbKeyHashSnippet.javatry {
PackageInfo info = getPackageManager().getPackageInfo(
"com.your-package-name",
PackageManager.GET_SIGNATURES);
for (Signature signature : info.signatures) {
MessageDigest md = MessageDigest.getInstance("SHA");
md.update(signature.toByteArray());
Log.d("YourKeyHash :", Base64.encodeToString(md.digest(), Base64.DEFAULT));
System.out.Println("YourKeyHash: ", Base64.encodeToString(md.digest(), Base64.DEFAULT));
}
} catch (NameNotFoundException e) {
} catch (NoSuchAlgorithmException e) {
}
Note: Just replace com.your-package-name with your app package name in the above code.
More Posts related to Android,
- Increase Android Emulator Timeout time
- Android : Remove ListView Separator/divider programmatically or using xml property
- Error : Invalid key hash.The key hash does not match any stored key hashes
- How to Change Android Toast Position?
- Android Alert Dialog with Checkboxes example
- Android : No Launcher activity found! Error
- Android Development: Spinners with Example
- Failed to sync Gradle project Error:failed to find target android-23
- INSTALL_FAILED_INSUFFICIENT_STORAGE Android Error
- Disable Fading Edges Scroll Effect Android Views
- How to create Toast messages in Android?
- Channel 50 SMSes received every few minutes Android Phones
- Android xml error Attribute is missing the Android namespace prefix [Solution]
- Create Custom Android AlertDialog
- How To Disable Landscape Mode in Android Application
- Android Development - How to switch between two Activities
- incorrect line ending: found carriage return (\r) without corresponding newline (\n)
- Generate Facebook Android SDK keyhash using java code
- Android Error Generating Final Archive - Debug Certificate Expired
- 21 Useful Android Emulator Short-cut Keyboard Keys
- Android RatingBar Example
- 11 Weeks of Android Online Sessions-15-Jun-to-28-Aug-2020
- Download interrupted: Unknown Host dl-ssl.google.com Error Android SDK Manager
- fill_parent vs match_parent vs wrap_content
- Android : Connection with adb was interrupted 0 attempts have been made to reconnect
More Posts:
- Java 8: Get First and Last Date of the Week for Given Date - Java
- [Solved] SharePoint System.IO.FileNotFoundException was unhandled - SharePoint
- Java: List of Data Structures available - Java
- Create a Gradle Java Project in VS Code - Gradle
- String Boot + Redis - SET and GET String Commands Examples - Java
- How to Change Text Size for Android ActionBar - Android
- How to Kill a port using bash terminal command? - Bash
- bash: netstat: command not found - Bash