获取发送消息的通道的ID

时间:2019-12-14 12:56:57

标签: python discord.py discord.py-rewrite

我想做的就是找到发送消息的渠道。

例如:

async def on_message(on_message): # Get Channel Id channel bot.get_channel(channel_id) await channel.send('test')

1 个答案:

答案 0 :(得分:0)

您正在遮盖on_message。您应该将on_message传递给Message对象,例如message

Message对象具有一个channel attribute,即发送消息的TextChannel
TextChannel对象还具有一个id attribute,它是频道的ID。

有关降价的帮助,请参见https://stackoverflow.com/editing-help