Facebook Android Generate Key Hash

后端 未结 21 2338
误落风尘
误落风尘 2020-11-22 04:11

Trying to create an android app with Facebook integration, I\'ve gotten to the part in the docs where you have to generate a key hash file, it specifies to run the following

21条回答
  •  野性不改
    2020-11-22 05:09

    Try passing the password for the key and store as part of the command

    keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore -keypass android -storepass android \
    | openssl sha1 -binary \
    | openssl base64
    

提交回复
热议问题