discord.errors.HTTPException:错误请求(状态代码:400)
2017-03-18
7945
我的代码偶尔会在使用此命令时出现 400 错误请求错误:
@owner_only
async def cmd_bootybomb(self, user_mentions, channel):
userid = (str(user_mentions))
await self.send_message(discord.Object(id = userid), bootybomb)
变量
bootybomb
已从另一个文件导入,该文件只是一堆设置为一个变量的链接。
我收到的错误是:
Traceback (most recent call last):
File "C:\Users\pc\Desktop\Gamefolders\BootyBot\BootyBot\musicbot\bot.py", line 1289, in on_message
response = await handler(**handler_kwargs)
File "C:\Users\pc\Desktop\Gamefolders\BootyBot\BootyBot\musicbot\bot.py", line 115, in wrapper
return await func(self, *args, **kwargs)
File "C:\Users\pc\Desktop\Gamefolders\BootyBot\BootyBot\musicbot\bot.py", line 877, in cmd_bootybomb
await self.send_message(discord.Object(id = userid), bootybomb)
File "C:\Users\pc\AppData\Local\Programs\Python\Python35\lib\site-packages\discord\client.py", line 831, in send_message
data = yield from self.http.send_message(channel_id, content, guild_id=guild_id, tts=tts)
File "C:\Users\pc\AppData\Local\Programs\Python\Python35\lib\site-packages\discord\http.py", line 137, in request
raise HTTPException(r, data)
discord.errors.HTTPException: BAD REQUEST (status code: 400)
为什么会发生这种情况以及如何解决?
1个回答
由于您使用的是 discord api,如果您阅读 send_message 的描述,如果您发送的消息长度超过 2000 个字符,discord 会引发 400 个请求错误。为此,Discord 的字符限制为 2000。如您所见,这实际上不是一个真正的错误,discord.errors.HTTPException:BAD REQUEST(状态代码:400)。这是 discord API 发出的自定义错误。
client.send_message: Raises: HTTPException – Sending the message failed.
而且我也在不久前就这个问题询问了支持人员,这是他们给我的解释。基本上,你必须将消息的字符数保持在 2000 以下。
这是此问题最常见的原因。但如果您的问题仍然存在,解决此问题的最佳方法是加入 discord 中 discord.py API 的支持服务器,并告诉他们您的问题。因为这主要是API的问题,而不是python的问题。
Taku
2017-03-18