I am trying to integrate Facebook login in an ionic application, after seeing the ionic documentation and follow the steps, I have successfully integrated it, but getting this error when run on my android device and click on the Facebook button,
Error: this app has no Android key hashes configure.
I use the following command to generate a key
keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64
I got a key, which I inserted in the key hashes field of my Facebook app. But still get this error when click on the Facebook button
Invalid key hash. The key has ************ does not match any stored key hashes. Configure your app key hashes at http://developers.facebook.com/apps/MY_APP_ID
This I have already configured. My question is, whether I have to put the app on play store before able to see the functionality of the Facebook button? If NO, the how can I test this in development mode?