我做了一个不和谐的机器人,我想添加一个自定义的不和谐表情符号反应我有这个代码:
x = await ctx.send(embed=asdf)
await x.add_reaction("1️⃣")
await x.add_reaction("once:EmojiID")
当我运行代码时出现此错误: discord.ext.commands.errors.CommandInvokeError:命令引发异常:HTTPException:400 错误请求(错误代码:10014):未知表情符号
答案 0 :(得分:0)
自定义表情符号可以像 <:name:id>
一样发送。例如:
await ctx.send("<:emoji_1:123456789123456789>")
await message.add_reaction("<:emoji_1:123456789123456789>")