C# Discord bot 获取发件人头像

C# Discord bot get senders avatar

您好,我想知道是否有人知道如何让我的 c# 机器人获得发件人头像,然后让它在消息中回复用户头像。 这是我拥有的:

    [Command("testuser")]
    public async Task testuser()
    {
        EmbedBuilder builder = new EmbedBuilder();

        builder.WithTitle("Message response")
            .WithDescription("Message" + **SENDERS USER AVATAR HERE**);

        await ReplyAsync("", false, builder.Build());
    }

我尝试使用:

.withurl() and .withimageurl()结合Context.User.GetAvatarUrl and Context.User.AvatarId

但是 none 成功了,请帮忙

Here 是我希望它看起来像的示例

EmbedBuilder.WithDescription() 不允许您将图像添加到嵌入描述的内容中,如果您想让嵌入看起来像您链接的屏幕截图,那么您必须使用

builder.WithFooter($"Help requested by {Context.User.Username}", Context.User.GetAvatarUrl());