将邀请代码转换为URL不和谐重写

时间:2019-05-27 23:10:39

标签: url-rewriting discord.py

我在机器人上设置了一条命令,以从服务器提取活动邀请,但似乎无法将结果转换为url。

我试图将{invites}更改为{invites.url},但似乎没有效果

@commands.is_owner()
    @commands.command()
    async def fi(self, ctx, id: int):
        server = self.bot.get_guild(id)
        invites = await server.invites()
        fetching = await ctx.send("Fetching Invites...")
        await fetching.edit(content=f"All Active Invites Codes: \n {invites}")
        await asyncio.sleep(8)
        await fetching.delete()
        # Fetches invite codes

1 个答案:

答案 0 :(得分:0)

Guild.invites返回一个Invites的列表,因此您需要分别获取每个url的{​​{1}}属性。

Invite