In my app I'm trying a login facebook without using the dialog-based authentication. The application run but I got the following error message facebook side:
Invalid android_key parametrer. The key XXXXXXXXXXXXXXXXX does not match any allowed key. Configure your app key hashes at http://developers.facebook.com/apps/{app_id}I setted the hash key XXXXXXXXXXXXXXXXX code in my facebook developer account. And in the app code I setted:
var fb = require('facebook'); fb.appid = '{my_app_id}'; fb.permissions = ['read_stream','offline_access']; fb.forceDialogAuth = false;Have you some suggestion, please? Thank you