如何获取机器人头像链接

时间:2018-07-11 04:45:31

标签: python-3.x discord.py

这个问题看起来很愚蠢,但我想嵌入bot头像,以便进行操作。像embed.set_thumbnail(url=user.avatar_url)一样,我尝试了bot.avatar_url,但是它不起作用。

1 个答案:

答案 0 :(得分:1)

假设您使用的是bot = discord.Client,则Client没有avatar_url作为属性。幸运的是,Client确实具有您可以访问的user属性,这意味着您应该可以使用bot.user.avatar_url

此处的文档:http://discordpy.readthedocs.io/en/latest/api.html#discord.Client.user