fb-downloads
npm install fb-downloads
Credits:
MạnhG
Download the video and find the Facebook Uid using the profile link.
Tải video và tìm Uid facebook bằng link profile"
Example
Find Uid
(async () => {
const toolfb = require("fb-downloads");
var id = await toolfb.findUid("https://facebook.com/manhict");
console.log(id);
})();
Or
const toolfb = require("fb-downloads");
toolfb.findUid("https://m.facebook.com/manhict")
.then(function (item) {
console.log(item);
});
Download video
(async () => {
var toolfb = require("fb-downloads");
var videolink = await toolfb.getVideoUrl("https://fb.watch/86k4FSqgSb/");
console.log(videolink);
console.log(videolink.sd);
console.log(videolink.hd);
})();