如何检查消息是否通过特定频道发送。频道 ID discord.py?

How do I check if a message was sent in a specific channel via. channel ID discord.py?

所以我正在为朋友编写一个 Discord 机器人程序,我需要查看消息是否通过特定频道发送。 我尝试了一些事情,问了几个人,并寻找答案,但我找不到任何答案。 这是我得到的最接近的结果,我尝试更改了一些对象:

if message.channelID == ('#858884357271322634'):
  await message.channel.send ('I checked and verified the channel.')

你的检查没有意义,没有这样的message.channelID

只需将message.channel.id与您想要的ID进行比较,然后正确插入即可。

简单例子:

if message.channel.id == 858884357271322634:
    await message.channel.send("I checked and verified the channel.")