Created
June 22, 2017 16:18
-
-
Save maichanchinh/1bf8ffd4064d8b4cc64625c459b773dc to your computer and use it in GitHub Desktop.
KEY HASH android for facebook
This file contains hidden or 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
| public static String printKeyHash(Activity context) { | |
| PackageInfo packageInfo; | |
| String key = null; | |
| try { | |
| //getting application package name, as defined in manifest | |
| String packageName = context.getApplicationContext().getPackageName(); | |
| //Retriving package info | |
| packageInfo = context.getPackageManager().getPackageInfo(packageName, | |
| PackageManager.GET_SIGNATURES); | |
| Log.e("Package Name=", context.getApplicationContext().getPackageName()); | |
| for (android.content.pm.Signature signature : packageInfo.signatures) { | |
| MessageDigest md = MessageDigest.getInstance("SHA"); | |
| md.update(signature.toByteArray()); | |
| key = new String(Base64.encode(md.digest(), 0)); | |
| // String key = new String(Base64.encodeBytes(md.digest())); | |
| Log.e("Key Hash=", key); | |
| } | |
| } catch (PackageManager.NameNotFoundException e1) { | |
| Log.e("Name not found", e1.toString()); | |
| } catch (NoSuchAlgorithmException e) { | |
| Log.e("No such an algorithm", e.toString()); | |
| } catch (Exception e) { | |
| Log.e("Exception", e.toString()); | |
| } | |
| return key; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment