質問者様の問題はdiscord.pyではなくdiscordの仕様に起因するものだと考えられます。
その根拠は、類似のdiscord.jsに関するStackOverflow上の下記の質問です。
Discord had set the RateLimit for thinks Like channelrename to 2 requests per 10 Minutes. the 10,000 per 10 Minutes is for "normal" Requests like sendmessage
Discordはチャンネル名の変更のためのRateLimitを10分あたり2リクエストに設定していました。10分あたり10,000リクエストというのはsendmessageのような "通常の"リクエストのためのものです。
ref: How often can I rename discord channel's name?
ここで触れている「10分当たり10,000リクエスト」というのは、Discordの公式ドキュメントにおける下記の記載です。
IP addresses that make too many invalid HTTP requests are automatically and temporarily restricted from accessing the Discord API. Currently, this limit is 10,000 per 10 minutes. An invalid request is one that results in 401, 403, or 429 statuses.
無効なHTTPリクエストが多すぎるIPアドレスは、自動的に一時的にDiscord APIへのアクセスが制限されます。現在、この制限は10分ごとに10,000件です。無効なリクエストとは、401、403、または429のステータスになるものです。
ref: Invalid Request Limit
したがって、質問者様の問題はdiscord.pyではなくdiscordの仕様に起因するものだと考えられます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/20 15:18