在控制台中安装机器人时出现不和谐错误

发布于 2025-01-11 03:40:51 字数 680 浏览 0 评论 0原文

我正在为不和谐编写一个机器人,一切运行良好,一段时间后它在控制台中出现错误控制台

我认为错误出现在令牌中,因为所有代码都正常工作

已删除并重新下载discord.py 更新了 py -3 -m pip install -U Discord.py 但没有任何帮助

告诉我还能做什么? 我将附上下面的代码:

import os
import sys
import asyncio
import time
import json

from discord.ext import commands
from discord.utils import get

bot = commands.Bot(command_prefix = '!', intents=discord.Intents.all())
TOKEN = 'My token'

>Bot code that worked without errors<

#Connect
token = open('token.txt', 'r').readline()

bot.run(token)

我在两个版本中添加了令牌:通过文本文件和通过 token = '' 在代码中添加

I am writing a bot for discord, everything worked well, after some time it gives an error in the consolein the console

I think the error is in the token because all the code worked correctly

Deleted and re-downloaded discord.py
Updated py -3 -m pip install -U discord.py
But nothing helped

Tell me what else can be done?
I will attach the code below:

import os
import sys
import asyncio
import time
import json

from discord.ext import commands
from discord.utils import get

bot = commands.Bot(command_prefix = '!', intents=discord.Intents.all())
TOKEN = 'My token'

>Bot code that worked without errors<

#Connect
token = open('token.txt', 'r').readline()

bot.run(token)

I added the token in two versions: through a text file and in code through token = ''

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春风十里 2025-01-18 03:40:51

intents=discord.Intents.all()
这是一个严肃的声明,你确定你真的需要所有的意图吗?
如果是这样,您确定启用了 Discord 开发门户上的所有意图吗?该行可能会导致您出现问题,请尝试将其删除。

intents=discord.Intents.all()
is a serious statement, are you sure you really need all the intents?
if so, are you sure you enabled all the intents on the discord dev portal? that line may be causing the issue for you, try removing it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文