1.0.3 • Published 7 months ago
kaiz-fbuid v1.0.3
kaiz-fbuid
A simple Node.js package to retrieve the UID of Facebook profiles, pages, or groups using link.
Installation :
npm install kaiz-fbuid
Usage :
const kaiz = require('kaiz-fbuid');
(async () => {
const url = 'https://facebook.com/someprofile';
const data = await kaiz(url);
console.log(data);
})();
Output Example :
{
"UID": "100095290150085"
}