Microsoft Teams 自定义连接器不显示主题颜色

Microsoft Teams custom connector doesn't display a themeColor

尝试为 Microsoft 团队创建自定义 webhook 时,我尝试在发送到连接器的有效负载中定义 "themeColor"。但是出于某种原因,Microsoft Teams 没有在 Teams 应用程序中响应显示任何主题颜色,它看起来像这样:

这是我的有效载荷的样子,我很确定它的格式正确:

            var officeObject = {"title": htmlTitle,
                                "summary": "Nothing",
                                "themeColor": "FF0000",
                                "sections":[
                                    {
                                        "facts": [
                                            {
                                                "name":"Issue:",
                                                "value": issueTitle
                                            },
                                            {
                                                "name":"Description:",
                                                "value": description
                                            }
                                        ]
                                    }
                                ]
                            };    

知道微软团队为什么不显示主题吗?

Microsoft Teams 目前不支持连接器消息的主题颜色 属性。