【发布时间】:2022-01-12 19:40:15
【问题描述】:
如何将图像(使用文件)和缩略图(使用 URL)附加到不和谐嵌入?
这是我的脚本:
file = discord.File("cropped.png")
embed.set_image(url = 'attachment://cropped.png')
embed.set_thumbnail(url = icon_URL)
await message.channel.send(file = file, embed = embed)
当机器人发送嵌入时,它只发送图像,而不是同时发送图像和缩略图。这是因为它们是同一个东西,而机器人只能附加一个吗?
【问题讨论】:
标签: python discord.py bots