2

我正在使用 C# 编写一个机器人,我可以在模拟器中看到 png 图像,但在 Microsoft Teams 聊天中,它显示为找不到图像路径。

这是简单的回复附件机器人代码:

message.Attachments = new List<Attachment>();
                            message.Attachments.Add(
                                new Attachment()
                                {
                                    ContentUrl = "https://docs.botframework.com/en-us/images/faq-overview/botframework_overview_july.png",
                                    ContentType = "image/png",
                                    Name = filteredPolicy.Filename
                                }
                            );
                            await context.PostAsync(message);    

参考:我的 Bot Emulator 和 Microsoft't Team 的屏幕截图

Bot Emulator 显示图像

微软团队不显示图像

注意:即使对于 PDF 附件,模拟器也显示 pdf 文件链接,但不是 Microsoft Team。

4

0 回答 0