如何在我的Discord频道中查看BOT的发送消息许可?
这是我的代码:
```
if (message.user.bot.permissions.has("SEND_MESSAGE")) {
console.log("I can send message!!")}
else {
console.log("I can't send message!!")
}
```
for exp:我想在频道ID中检查bot权限:988087516844421170 我应该怎么办?
This is my code:
```
if (message.user.bot.permissions.has("SEND_MESSAGE")) {
console.log("I can send message!!")}
else {
console.log("I can't send message!!")
}
```
For exp: I want to check bot permission in channel ID: 988087516844421170
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要查看频道中的机器人许可,您应该使用 channel.permissionsfor() 在此代码中喜欢:
To check bot permission in channel you should use
Channel.permissionsFor()
like in this code: