gpt4 book ai didi

c# - Gif 图像无法在 Microsoft Teams 中播放

转载 作者:行者123 更新时间:2023-11-30 14:24:25 32 4
gpt4 key购买 nike

我正在使用以下代码在我的回复中显示一个 gif 图像作为附件:

    Activity replyToConversation = (Activity)context.MakeMessage();
replyToConversation.Attachments = new List<Attachment>();
replyToConversation.Attachments.Add(new Attachment()
{
ContentUrl = "http://i.giphy.com/p3BDz27c5RlIs.gif",
ContentType = "image/gif"
});

await context.PostAsync(replyToConversation);
context.Wait(MessageReceivedAsync);

在网络聊天 channel 中,它按预期显示(和播放),但出于某种原因,它在 Microsoft Teams channel 中显示为静态图像。

请问有什么想法吗?

最佳答案

作为解决方法,您可以返回嵌套图像的 HTML 字符串

 await context.PostAsync($"<img src=\"{imageUrl}\" />");

关于c# - Gif 图像无法在 Microsoft Teams 中播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41262873/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com