Приветствую. Пишу систему Blacklist. И я хочу занести пользователя в базу данных, а мне ошибку выдаёт. Код ниже и ошибка
@commands.command()
async def blacklist(self, ctx, id, reason='Ну типо захотел'):
if id is None:
await ctx.send('Введите ид пользователя', delete_after=10)
else:
user = await self.client.fetch_user(id)
bl = discord.Embed(color=discord.Colour.random(), description=
f'{user} был добавлен в чёрный список бота\n'
f'Причина: {reason}'
)
bl.set_author(name='Blacklist system')
bl.set_footer(text=f'ID:{id}')
await ctx.send('Готово', embed=bl)
collection.insert_one({"id":id, "reason":reason})
error:
Command raised an exception: OperationFailure: bad auth : Authentication failed., full error: {'ok': 0, 'errmsg': 'bad auth : Authentication failed.', 'code': 8000, 'codeName': 'AtlasError'}