前提・実現したいこと
botを起動させた時に、特定のチャンネルに書き込んだ後にbotを停止したい。
発生している問題・エラーメッセージ
UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'send' of undefined
該当のソースコード
javascript
1const Discord = require('discord.js'); 2 3const client = new Discord.Client(); 4 5const token = "トークン"; 6(async () => { 7 console.log('ready...'); 8 await client.login(token); 9 client.channels.cache.get('チャンネルID').send('ready'); 10})();
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/07 16:30
2021/05/07 16:52
2021/05/07 17:46
2021/05/07 17:52