Message not sending because of a quot;BAD REQUESTquot; with discord.py(由于“错误请求而未发送消息与不和谐.py)
问题描述
我正在使用 Discord.py 制作机器人,但在尝试发送带有嵌入的消息时不断收到错误消息.
I'm making a bot with Discord.py and I keep getting an error when trying to send a message with an embed.
这是我得到的错误:
Traceback (most recent call last):
File "C:UserspcDocumentsStoragepythonNanoBotot.py", line 101, in on_message
await client.send_message(message.channel, embed=embed)
File "C:UserspcAppDataLocalProgramsPythonPython36-32libsite-packagesdiscordclient.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:UserspcAppDataLocalProgramsPythonPython36-32libsite-packagesdiscordhttp.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)
推荐答案
由于你使用的是discord api,如果你看了client.send_message
的描述,如果你在embed
超过 2000 chrs,discord 会引发 400 请求错误.因为 Discord 的字符数限制是 2000.
Since you're using discord api, if you read the description of client.send_message
, if you send a message in the embed
is longer than 2000 chrs, discord will raise a 400 request error. For Discord's character limit is 2000.
如您所见,它实际上并不是真正的错误,discord.errors.HTTPException: BAD REQUEST (status code: 400)
.这是不和谐 API 造成的自定义错误.要更正它,您可以将消息拆分为少于 2000 chrs 的嵌入,然后单独发送.需要明确的是,这不是因为服务器已关闭,而是因为服务器拒绝发送您的消息,因为它太长了.
As you can see, it's not actually a real error, discord.errors.HTTPException: BAD REQUEST (status code: 400)
. It's a custom error made by discord API. To correct it, you can split the message into embeds that has less than 2000 chrs and send them separately. To be clear, this isn't because that the server is down, but because the server rejected to send your message since it's too long.
这篇关于由于“错误请求"而未发送消息与不和谐.py的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:由于“错误请求"而未发送消息与不和谐.py


基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01