Account Kit helps you quickly register for apps using just your phone number or email address — no password needed. It's reliable, easy to use and gives you a choice about how you sign up for apps.
node-accountkit is a nodeJS module to handle accountkit server side implementation.
Full documentation for account kit can be found here https://developers.facebook.com/docs/accountkit/web
1.1.3
npm install node-accountkitStep 1 Include module to your server.js
varAccountkit=require('node-accountkit');Step 2 Configure account kit.
Accountkit.set("APP_ID","ACCOUNT_KIT_APP_SECRET"[,"API_VERSION"]);//API_VERSION is optional, default = v1.1Accountkit.requireAppSecret(true);// if you have enabled this option, default = trueMore information https://developers.facebook.com/apps/
Step 4 Use it.
//authorization_code are the authorizaition code that we get from account kit login operation. look for sample app for more usage information.Accountkit.getAccountInfo(authorization_code,function(err,resp){/** { "email": { "address": "mail.goyalshubham@gmail.com" }, "id": "941488975973375" } */});// Account Removal//accountId is accountkit user idAccountkit.removeUser(accountId,function(err,resp){/** { "success": true } */});- accountkit.getAccountInfo (authorization_code, callback);
- removeUser (id, callback);
Feel free to fork it on Github :)