从消息的 link 制作 Discord Bot post 图片
Make Discord Bot post image from the link from the message
我想从文本中制作 discord bot post 图片。
例如-
如果有人打字
!image http://imgur.com/xxxxxx.jpg
然后机器人应该用没有 link 的图像回复。
有什么帮助吗?
谢谢。
这是您如何操作的示例:
const Discord = require('discord.js');
const imageUrl = msg.content.split(' ').slice(1);
const embed = new Discord.RichEmbed().setImage(imageUrl)
msg.channel.send{ embed }
我想从文本中制作 discord bot post 图片。
例如- 如果有人打字 !image http://imgur.com/xxxxxx.jpg
然后机器人应该用没有 link 的图像回复。 有什么帮助吗? 谢谢。
这是您如何操作的示例:
const Discord = require('discord.js');
const imageUrl = msg.content.split(' ').slice(1);
const embed = new Discord.RichEmbed().setImage(imageUrl)
msg.channel.send{ embed }