Ошибка. Перерыл всё! Ничего не нашёл. Помогите

Выводит ошибку, даже переустанавливал компилятор и IDE. Ничего не помогло

Код:

import discord
import random

intents = discord.Intents.default()
intents.message_content = True

client = discord.Client(intents=intents)

@client.event
async def on_ready():
    print(f'We have logged in as {client.user}')

@client.event
async def on_message(message):
    if message.content.startswith('>help'):
        await message.channel.send("'>credits': никнейм создателя \n '>how_to_save': Подсказки, как можно сохранить природу")
    elif message.content.startswith('>how_to_save'):
        randomik = random.randint(1,8)
        if randomik == 1:
            await message.channel.send('Сортируй мусор в разные контейнеры!')
        elif randomik == 2:
            await message.channel.send('Меньше пользуйся пластиковыми тарелками, столовыми приборами и т. д.!')
        elif randomik == 3:
            await message.channel.send('Экономь электричество!')
        elif randomik == 4:
            await message.channel.send('Береги воду!')
        elif randomik == 5:
            await message.channel.send('Не разбрасывайся мусором!')
        elif randomik == 6:
            await message.channel.send('Употребляй натуральные продукты!')
        elif randomik == 7:
            await message.channel.send('Не покупай электрические машины!')
        elif randomik == 8:
            await message.channel.send('Покупай продукты, которые сделаны с любовью к природе (ЭКО и другие)')
    elif message.content.startswith('>credits'):
        await message.channel.send('Создатель: timoxha001')

client.run('Мой токен')

Ошибка:

Traceback (most recent call last):
  File "d:\INFO\Kodland\m2l2\ecobot.py", line 38, in <module>
    client.run('Мой токен')        
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\site-packages\discord\client.py", line 869, in run
    asyncio.run(runner())
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\asyncio\runners.py", line 190, 
in run
    return runner.run(main)
           ^^^^^^^^^^^^^^^^
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\asyncio\runners.py", line 118, 
in run
    return self._loop.run_until_complete(task)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\asyncio\base_events.py", line 654, in run_until_complete
    return future.result()
           ^^^^^^^^^^^^^^^
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\site-packages\discord\client.py", line 858, in runner
    await self.start(token, reconnect=reconnect)
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\site-packages\discord\client.py", line 787, in start
    await self.connect(reconnect=reconnect)
  File "C:\Users\korep\AppData\Local\Programs\Python\Python311\Lib\site-packages\discord\client.py", line 711, in connect
    raise PrivilegedIntentsRequired(exc.shard_id) from None
discord.errors.PrivilegedIntentsRequired: Shard ID None is requesting privileged intents that have not been explicitly enabled in the developer portal. It is recommended to go to https://discord.com/developers/applications/ and explicitly enable the privileged intents within your application's page. If this is not possible, then consider disabling the privileged intents instead.

Ответы (0 шт):