Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

when i tried to produce hash key through command prompt it giving one hash key and when i tried programatically am getting diff hash key..which one i have to use?public void

FacebookHashKey(){PackageInfo info;
     try{ 
        info =getPackageManager().getPackageInfo("com.facebook.android",PackageManager.GET_SIGNATURES);
            for (Signature signature : info.signatures) {
        MessageDigest md;
        md = MessageDigest.getInstance("SHA"); md.update(signature.toByteArray());
        String androidhashkey = new String(Base64.encode(md.digest(), 0));// 
        String androidhashkey = new String(Base64.encodeBytes(md.digest()));//PRINT THE KEY IN THE LOGCAT 
        Log.e("GPS Citygames Activity FB HASH KEY:", androidhashkey);
        }
    }catch (NameNotFoundException e1) {    
      Log.e("GPS Citygames Activity name not found exception", e1.toString());
    }catch (NoSuchAlgorithmException e) 
    {
     Log.e("GPS Citygames Activity no such an algorithm exception", e.toString());

    }catch (Exception e){

    Log.e("exception", e.toString());

    }
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.