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