gpt4 book ai didi

python - dicord.py : get_channel() returns None

转载 作者:行者123 更新时间:2023-12-03 08:28:44 27 4
gpt4 key购买 nike

我正在开发一个机器人,除了执行一些代码之外,它还应该删除添加到特定消息的 react 。

在我编写的代码中,方法 get_channel() 返回 None

async def on_raw_reaction_add(self, payload):
if payload.message_id == self.message_id['private_room']:
if payload.emoji.name == self.lock:
rchannel = self.get_channel(payload.channel_id)
rmsg = await rchannel.fetch_message(payload.message_id)
ruser = await self.fetch_user(payload.user_id)
await rmsg.remove_reaction(self.lock, ruser)

我可以使用 await fetch_channel() 方法,该方法工作正常,但由于它是一个 API 调用,它的工作速度比上面提到的慢得多(至少我认为是这样)。

编辑:

我尝试使用以下代码进行调试:

print(self.get_user(payload.user_id))
print(await self.fetch_user(payload.user_id))
print(self.get_channel(payload.channel_id))
print(await self.fetch_channel(payload.channel_id))

输出为:

None
wolex#0000
None
lounge

最佳答案

确保CHANNEL_ID 是整数而不是字符串

CHANNEL_ID = 746382173
channel = None

@client.event
async def on_ready():
print("We have logged in as {0.user}".format(client))
channel = client.get_channel(CHANNEL_ID)
print(channel)

关于python - dicord.py : get_channel() returns None,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65789837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com