我想做的就是找到发送消息的渠道。
例如:
async def on_message(on_message):
# Get Channel Id
channel bot.get_channel(channel_id)
await channel.send('test')
答案 0 :(得分:0)
您正在遮盖on_message
。您应该将on_message
传递给Message
对象,例如message
。
该Message
对象具有一个channel
attribute,即发送消息的TextChannel
。
该TextChannel
对象还具有一个id
attribute,它是频道的ID。
有关降价的帮助,请参见https://stackoverflow.com/editing-help。