前提・実現したいこと
discord.pyでbot作成をしていて、特定のアナウンスチャンネルをフォローできるようなコマンドを実装しようとしてます
該当のソースコード
python
1@bot.command() 2async def follow(ctx): 3 await ctx.channel.follow(destination=****,reason=None) 4 await ctx.send("アナウンスチャンネルをフォローしたよ!")
発生している問題・エラーメッセージ
****部分にチャンネルidを入れても以下のようにエラーが出ます
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: ClientException: The channel must be a news channel.
補足情報(FW/ツールのバージョンなど)
python 3.8.5
discord.py 1.4.0
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/06 23:19
2020/08/07 03:54
2020/08/07 03:54
2020/08/07 04:26
2020/08/07 08:23
2020/08/07 13:03