我有一个创建Webhook,创建Webhook和名称的命令,但是当我添加avatar
并将其设置为提到的人的头像网址时,我得到了错误:'Asset' object has no attribute 'startswith'
我认为我可能必须使用with open
或类似的东西来打开我不想从我的PC上获得的图像,无论如何我都希望它是所提及的人的图像而不是我PC上的图像文件这个吗?
@bot.command()
async def whook(ctx,user:discord.Member):
await ctx.channel.create_webhook(name="Mr. W.Hook",avatar=user.avatar_url)
print("Created")