Category:

Generate Hash Key For Facebook using code

Simple code to generate Facebook Hash Key for you android Application. Code to Generate Hash Key For Facebook using code – public static void showHashKey(Context context) { try { PackageInfo info = context.getPackageManager().getPackageInfo(“com.mypackagename”, PackageManager.GET_SIGNATURES); //Your package name here for (Signature signature : info.signatures) { MessageDigest md = MessageDigest.getInstance(“SHA”); md.update(signature.toByteArray()); Log.i(“KeyHash:”, Base64.encodeToString(md.digest(), Base64.DEFAULT)); } } catch […]

Continue Reading
Posted On :
Category:

Upload image using ajax jquery

In this tip i will help you  to upload image using  jQuery without using any other jQuery plugin. You can also check some other jQuery Tutorial’s. CODE First create new html file in your favorite  text editor and copy below code. Before start writing code add jQuery plugin or jQuery CDN. Created simple html form for uploading image. […]

Continue Reading
Posted On :