When I do :
cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git
I get the error :
Error: Variable(s) missing: APP_ID, APP_NAME
Where do I have to configure these variables ?
When I do :
cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git
I get the error :
Error: Variable(s) missing: APP_ID, APP_NAME
Where do I have to configure these variables ?
Edit the following lines in plugins\com.phonegap.plugins.facebookconnect\plugins.xml:
To:
Look at the bottom of the README.md file on that github repository. You'll see it gives you instructions for installing the plugin and including the variables:
The Cordova CLI uses Plugman behind the scenes, so you can use it to inject variable names like this:
To use this plugin you will need to make sure you've registered your Facebook app with Facebook and have an APP_ID (https://developers.facebook.com/apps).
If you plan on rolling this out on iOS, please note that you will need to ensure that you have properly set up your Native iOS App settings on the Facebook App Dashboard. Please see the Getting Started with the Facebook SDK: Create a Facebook App section, for more details on this.
If you plan on rolling this out on Android, please note that you will need to generate a hash of your Android key(s) and submit those to the Developers page on Facebook to get it working. Furthermore, if you are generating this hash on Windows (specifically 64 bit versions), please use version 0.9.8e or 0.9.8d of OpenSSL for Windows and not 0.9.8k. Big ups to fernandomatos for pointing this out!