开发者问题收集

由于 discord.py 中的“错误请求”,消息未发送

2017-03-25
14218

我正在使用 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)
1个回答

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

如您所见,这实际上不是一个真正的错误, discord.errors.HTTPException:BAD REQUEST(状态代码:400) 。这是 discord API 产生的自定义错误。要纠正它,您可以将消息拆分为少于 2000 个字符的嵌入并单独发送。要明确的是,这 不是 因为服务器关闭了,而是因为服务器拒绝发送您的消息,因为它太长了。

Taku
2017-03-25