UNPKG

notmebotz-tools

Version:

Sebuah Tools yang berfungsi untuk mendownload Video atau Foto dari media sosial, serta sebagai tools yang berguna untuk aplikasi kamu seperti untuk BOT

21 lines (18 loc) 464 B
const fetch = require('node-fetch'); async function threadsdl(url) { if (!url) { console.log(JSON.stringify({ author: "Herza", status: 400, message: "Input Parameter URL" }, null, 2)); } let za = await fetch(`https://api.threadsphotodownloader.com/v2/media?url=${url}`); let data = await za.json(); return(JSON.stringify({ author: "Herza", status: 200, data: data }, null, 2)); } module.exports = { threadsdl };