1.0.3 • Published 5 years ago

facebook-ranking-tool v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

FACEBOOK-RANKING-TOOL

A library to get ranking member in group.

Very easy to install and use.

INSTALL

run this command:

npm install facebook-ranking-tool

USE

Create a file app.js:

const ranking_tool = require("facebook-ranking-tool");
let getRankGroup = ranking_tool({
    idGroup: '<ID-GROUP>',
    token: '<YOUR_TOKEN || ADMIN_TOKEN>',
    option: {
        dayRank: 60,//how many day ago you want to check rank ?
        point: {
            point_per_post: 5,
            point_per_comment: 2,
            point_per_reaction: 1,
            point_per_commented:1,
            point_per_reactioned:1
        },
        stat: false //For search and use data
    }
});

getRankGroup.then(console.log)

And run this command:

node app.js