使用嵌入嵌入不和谐的图像
Posted
技术标签:
【中文标题】使用嵌入嵌入不和谐的图像【英文标题】:Embed an image for discord using embeds 【发布时间】:2021-05-14 09:36:42 【问题描述】:我正在尝试制作嵌入图像命令,例如 $embed (image link)
这是我的代码:
async def image(ctx, link):
await ctx.message.delete()
embd = discord.Embed("")
embed.set_image(url=link)
await ctx.channel.send(embed=embd)
但它不起作用,我该如何解决?
【问题讨论】:
【参考方案1】:您的变量拼写错误。试试这个:
async def image(ctx, link):
await ctx.message.delete()
embed = discord.Embed("")
embed.set_image(url=link)
await ctx.send(embed=embed)
【讨论】:
以上是关于使用嵌入嵌入不和谐的图像的主要内容,如果未能解决你的问题,请参考以下文章
使用 discord.py 制作一个不和谐的机器人通过嵌入发送图像