'How to Put Youtube Video Thumbnail in embed thumbnail?

The problem is in the .setThumbnail method. The image is not loaded in the embed. I always get this: here

const embed = new MessageEmbed()
    .setTitle(song.name)
    .setDescription('Some description here')
    .setColor('#0099ff')
    .setThumbnail(song.url); // <- not working
message.channel.send({ embeds: [embed] });


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source