6

我正在使用 Discord.py 制作一个机器人,并且在尝试发送带有嵌入的消息时不断收到错误消息。

这是我得到的错误:

Traceback (most recent call last):
  File "C:\Users\pc\Documents\Storage\python\NanoBot\bot.py", line 101, in on_message
    await client.send_message(message.channel, embed=embed)
  File "C:\Users\pc\AppData\Local\Programs\Python\Python36-32\lib\site-packages\discord\client.py", line 1152, in send_message
data = yield from self.http.send_message(channel_id, content, guild_id=guild_id, tts=tts, embed=embed)
  File "C:\Users\pc\AppData\Local\Programs\Python\Python36-32\lib\site-packages\discord\http.py", line 198, in request
raise HTTPException(r, data)
discord.errors.HTTPException: BAD REQUEST (status code: 400)

我的代码:

embed = discord.Embed(color=target.color)
embed.set_thumbnail(url=target.avatar_url)
embed.set_author(name=str(target.name), url="Playing " + str(target.game))
embed.set_footer(text="!!userinfo command")
embed.add_field(name="Status", value=str(target.status))
embed.add_field(name="Nickname", value=str(target.nick))
embed.add_field(name="Account Created", value=str(target.created_at))
embed.add_field(name="Roles", value=str(roles))
embed.add_field(name="Joined at", value=str(target.joined_at))
await client.send_message(message.channel, embed=embed)
4

1 回答 1

8

由于您使用的是 discord api,如果您阅读 的描述client.send_message,如果您发送的消息embed超过 2000 chrs,discord 将引发 400 请求错误。Discord 的字符数限制为 2000。

如您所见,这实际上并不是一个真正的错误,discord.errors.HTTPException: BAD REQUEST (status code: 400). 这是不和谐 API 造成的自定义错误。要更正它,您可以将消息拆分为少于 2000 chrs 的嵌入,然后单独发送。需要明确的是,这不是因为服务器已关闭,而是因为服务器拒绝发送您的消息,因为它太长了。

于 2017-03-25T13:33:00.357 回答