The Apache Cordova wrapper around the Facebook AccountKit.
- Create Facebook Developer Account
- Get a Facebook App ID (
APP_ID
) - Get an AccountKit client token (
CLIENT_TOKEN
) - To install the plugin in your app, execute the following (replace variables where necessary):
cordova plugin add cordova-plugin-accountkit --save \
--variable APP_ID="123456789" \
--variable APP_NAME="myApplication" \
--variable CLIENT_TOKEN="abcdefghijklmnopqrstuvwxyz"
If you need to change your APP_ID
after installation, it's recommended that you remove and then re-add the plugin as above. Note that changes to the APP_ID
value in your config.xml
file will not be propagated to the individual platform builds.
It is recommended to add these permission to config.xml
of your Cordova project to reduce the friction during the login process (more info):
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
accountKitPlugin.loginWithEmail(Function success, Function failure)
accountKitPlugin.loginWithPhoneNumber(Function success, Function failure)
Success function returns an Object like:
{
accountId: "<string>",
applicationId: "<string>",
token: "<long string>",
lastRefresh: 1451606400,
refreshInterval: 2592000
}
Failure function returns an error String.
accountKitPlugin.logout()
accountKitPlugin.getAccessToken(Function success, Function failure)
Success function returns an Object like:
{
accountId: "<string>",
applicationId: "<string>",
token: "<long string>",
lastRefresh: 1451606400,
refreshInterval: 2592000
}