我正在尝试获取公会的图标URL。如何使用icon_url来获取链接?
@client.command()
async def servericon(ctx):
await ctx.send(discord.Guild.icon_url)
我希望获得公会的图标URL,但是却获得了“属性对象位于0x000002683BB548B8”。
答案 0 :(得分:1)
您正在使用该类的属性,您需要使用代表您感兴趣的特定行会的实例的属性。在这种情况下,它可能是ctx.guild.icon_url