Discord.py创建与频道断开连接后踢出用户的临时邀请

时间:2020-10-27 23:41:56

标签: python discord discord.py

我目前正在尝试让我的机器人为公会创建邀请,以在断开服务器/公会连接后踢过使用此链接的用户。 为此,我发现this coroutine带有参数“ temporary”,这由它断开用户连接的能力来描述。 可悲的是,这对我来说并不奏效,因为没人被踢。 我误会了吗?

这是我测试的基本代码:

@commands.command(pass_context=True)
async def createInvite(self,ctx):
    invitelink = await discord.abc.GuildChannel.create_invite(ctx.message.channel,reason="Temporary Invite",temporary=True)
    await ctx.send(invitelink)

0 个答案:

没有答案