How does Ionic/Cordova generate hash key?

后端 未结 3 1269
余生分开走
余生分开走 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:28

    It seems Cordova use ~/android/debug.keystore with the password android

    To get it :

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

    With password : android

提交回复
热议问题