python - 如何编辑嵌入消息 - discord.py

标签 python discord discord.py

如何在 discord.py 中编辑嵌入?

我试过了

msg.edit(embed = embed) 

但它只是编辑消息
<discord.embeds.Embed object at 0x000001824D3F5A68>

最佳答案

要为已经给出的答案提供替代答案,您应该能够像这样编辑给定消息的嵌入:

from discord import Embed

...

first_embed = Embed(title='embed 1')
new_embed = Embed(title='embed 2')

# send a first message with an embed
msg = await ctx.send(embed=first_embed)

# edit the embed of the message
await msg.edit(embed=new_embed)

关于python - 如何编辑嵌入消息 - discord.py,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58969381/

相关文章:

python - Python Pylon 是否有管理插件?

python - 为什么python中的多处理模块需要pickle

python - 如何部分禁用/忽略 pylint 规则?

python - 如何修复 Heroku Dyno 不显示的问题?

python - CommandOnCooldown 错误处理程序未捕获错误!已经测试了一切

java - 我该如何用java编写这个方法?

discord - 如何将超链接嵌入到语音 channel ?

javascript - 获取服务器上的所有 Discord 线程 (Discord.js)

python - 无法在 exec 中等待

python - 尽管启用了管理员权限和两种意图,为什么我的机器人无法踢用户?