【发布时间】:2021-07-02 09:28:34
【问题描述】:
我只想获取嵌入的内容。我什至不知道这是否可能。 那是我的尝试。
async def getEmbedContent(ctx):
print("start")
msg = await ctx.fetch_message(828964689648156702) # <-- embed ID
print(msg.embeds)
print("done")
控制台正在打印:
start
[<discord.embeds.Embed object at 0x000001D2F83D2790>]
done
如何让嵌入的漏洞内容再次重新发布到频道中?
【问题讨论】:
标签: python python-3.x python-2.7 discord discord.py