不和谐.py |机器人可以生成服务器邀请链接吗?

时间:2021-01-18 06:39:29

标签: python python-3.x discord discord.py discord.py-rewrite

我想知道机器人是否可以生成 Discord 服务器链接。基本上在我取消禁止一个不和谐用户之后,我希望机器人邀请他回来。我还没有尝试过任何东西。我在谷歌上搜索但找不到任何东西。

(注意:我使用的是最新版本的 Discord.py。)

1 个答案:

答案 0 :(得分:0)

您可以将以下内容添加到您的取消禁止命令中,以便为该特定文本频道创建不和谐邀请,然后将其发送给被取消禁止的用户:

# This will create the invite
invite = await ctx.channel.create_invite()
# This will send the user the invite via Private Message
# You will need to have fetched the user previously
await user.send(invite)

您可能还想检查 official discord.py documentation 以检查您可以传递给 create_invite() 方法的可选参数。

Reference of method create_invite