Discord bot 恢复消息的附件并通过嵌入将其发送到另一个频道
Discord bot recover the attachment of a message and send it in another channel with an embed
我希望我的机器人能够恢复消息的附件并通过嵌入将其发送到另一个频道,我这样做了:
embed.set_image(url=message.attachments[0].url
但它只适用于图像(或 gif,但视频不起作用)
embed.set_image顾名思义就是用来设置图片的。不幸的是,Discord 不允许机器人在嵌入的内容中发送视频。您有限的选择是将 url 和 post 作为消息的内容并让 discord 嵌入它。
我希望我的机器人能够恢复消息的附件并通过嵌入将其发送到另一个频道,我这样做了: embed.set_image(url=message.attachments[0].url 但它只适用于图像(或 gif,但视频不起作用)
embed.set_image顾名思义就是用来设置图片的。不幸的是,Discord 不允许机器人在嵌入的内容中发送视频。您有限的选择是将 url 和 post 作为消息的内容并让 discord 嵌入它。