Skip to content

taina0407/node-accountkit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-accountkit

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

Version

1.1.6

Installation

npm install node-accountkit

Usages

Step 1 Include module to your server.js

var Accountkit = require ('node-accountkit');

Step 2 Configure account kit.

Accountkit.set ("APP_ID", "ACCOUNT_KIT_APP_SECRET", "API_VERSION"); //API_VERSION is optional, default = v1.1
Accountkit.requireAppSecret (true); // if you have enabled this option, default = true

More 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 id
Accountkit.removeUser(accountId, function(err, resp){
    /**
    {
        "success": true
    }
    */
});

Methods

  • accountkit.getAccountInfo (authorization_code, callback);
  • removeUser (id, callback);

Contribute

Feel free to fork it on Github :)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%