How should I download received files from telegram api
I just want to download images received by my telegram bot with nodejs but I dont know witch method to use. I'm using node-telegram-bot-api and I tried this code : bot.on('message', (msg) => { const img = bot.getFileLink(msg.photo[0].file_id); console.log(img); });…