Android : HashKey for Facebook Authentication

on Sunday, August 31, 2014


Every Android app you'll create will be signed, and you will need to register each app's key hash with Facebook as a security check for authenticity.


keytool -exportcert -alias androiddebugkey -keystore "C:\Users\DELL.android\debug.keystore" | "C:\OpenSSL\bin\openssl" sha1 -binary |"C:\OpenSSL\bin\openssl" base64


I generated hashkey through above command and updated in Facebook developer account.


SO, whenever my app is doing request to facebook, will this hashkey will be generated dynamically through Facebook SDK and will it be checked against the hashkey stored in Facebook dveoper page.


0 comments:

Post a Comment