Downloading files
const result = await client.getMessages("me", {
ids: 87581 // the id of the message you want to download
});
const media = result[0].media;
if (media) {
const buffer = await client.downloadMedia(media, {
workers: 1,
});
console.log("result is", buffer);
}Last updated