discord js get attachment url

Solutions on MaxInterview for discord js get attachment url by the best coders in the world

showing results for - "discord js get attachment url"
Aiden
30 Oct 2016
1message.attachments.forEach(attachment => {
2	const ImageLink = attachment.proxyURL;
3	message.channel.send(`\`${ImageLink}\``).catch(error)
4});