How does Ionic/Cordova generate hash key?

后端 未结 3 1265
余生分开走
余生分开走 2020-12-16 20:49

I\'m working on adding Facebook API integration with ionic/Cordova and am trying to find the debug hash key that is generated for my app when I do:

ionic bui         


        
3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-16 21:31

    One answer that worked for me is this one:

    • Copy the apkname.apk file you want to know the hash of to the 'Java\jdk1.7.0_79\bin' folder
    • Run this command keytool -list -printcert -jarfile apkname.apk
    • Copy the SHA1 value and convert it using this site
    • Use the converted Keyhash value (ex. zaHqo1xcaPv6CmvlWnJk3SaNRIQ=)

提交回复
热议问题