第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何解決discord.py中的身份驗(yàn)證錯誤

如何解決discord.py中的身份驗(yàn)證錯誤

泛舟湖上清波郎朗 2023-09-05 20:37:13
我正在使用discord.py 制作discord 機(jī)器人。但是當(dāng)我打開機(jī)器人時,它收到錯誤discord.errors.ConnectionClosed:WebSocket連接已關(guān)閉:代碼= 4004(私人使用),原因=身份驗(yàn)證失敗。有什么辦法可以解決這個問題嗎?我已經(jīng)嘗試過生成新的代幣,或者制作新的機(jī)器人。我現(xiàn)在使用的代碼之前運(yùn)行成功。當(dāng)我在其他計算機(jī)(沒有相同的IP)上運(yùn)行此代碼時,它可以正常工作。我怎么解決這個問題?import asyncioimport discordapp = discord.Client()def get_token(): # Get tokens from key.key    global token # This part works properly    f = open("Key.key", "r")    token = str(f.readline())@app.eventasync def on_ready(): #Login Part    print("Logining to : ")    print(app.user.name)    print(app.user.id)    print("==========")    game = discord.Game("Bot is working properly!")    await app.change_presence(status=discord.Status.online, activity=game)@app.eventasync def on_message(message):    if message.author.bot:        return None    if message.content == "!hello":        await message.channel.send("hello?")get_token()app.run(token)這是我的源代碼,下面是回溯  File "d:\Code\Project\discord_bot\Koi_Bot_Discord\Main.py", line 30, in <module>    app.run(token)  File "D:\Python\lib\site-packages\discord\client.py", line 598, in run    return future.result()  File "D:\Python\lib\site-packages\discord\client.py", line 579, in runner    await self.start(*args, **kwargs)  File "D:\Python\lib\site-packages\discord\client.py", line 543, in start    await self.connect(reconnect=reconnect)  File "D:\Python\lib\site-packages\discord\client.py", line 457, in connect    await self._connect()  File "D:\Python\lib\site-packages\discord\client.py", line 421, in _connect    await self.ws.poll_event()  File "D:\Python\lib\site-packages\discord\gateway.py", line 476, in poll_event    raise ConnectionClosed(exc, shard_id=self.shard_id) from excdiscord.errors.ConnectionClosed: WebSocket connection is closed: code = 4004 (private use), reason = Authentication failed.
查看完整描述

1 回答

?
德瑪西亞99

TA貢獻(xiàn)1770條經(jīng)驗(yàn) 獲得超3個贊

我建議使用環(huán)境變量,但如果您堅(jiān)持從文件中讀取,請嘗試:

def get_token(): # Get tokens from key.key

? ? with open("Key.key", "r") as f:

? ? ? ? return f.readline().strip()

...


app.run(get_token())

您可能會從 中獲取換行符readline,因此strip將其刪除,但讓函數(shù)返回您的標(biāo)記是更好的做法。


查看完整回答
反對 回復(fù) 2023-09-05
  • 1 回答
  • 0 關(guān)注
  • 278 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號