我想知道机器人是否可以生成 Discord 服务器链接。基本上在我取消禁止一个不和谐用户之后,我希望机器人邀请他回来。我还没有尝试过任何东西。我在谷歌上搜索但找不到任何东西。
(注意:我使用的是最新版本的 Discord.py。)
答案 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()
方法的可选参数。