Last active
March 21, 2017 06:25
-
-
Save mumer92/6779e9ca160b4d4b643c to your computer and use it in GitHub Desktop.
Generate Facebook KeyHash Android Programatically
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
try { | |
PackageInfo info = getPackageManager().getPackageInfo( | |
"com.facebook.samples.loginhowto", | |
PackageManager.GET_SIGNATURES); | |
for (Signature signature : info.signatures) { | |
MessageDigest md = MessageDigest.getInstance("SHA"); | |
md.update(signature.toByteArray()); | |
Log.d("KeyHash:", Base64.encodeToString(md.digest(), Base64.DEFAULT)); | |
} | |
} catch (NameNotFoundException e) { | |
} catch (NoSuchAlgorithmException e) { | |
} | |
...other operations | |
}//end of onCreate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment