我一直在尝试通过连接器将卡片发送到Teams channel 。卡片确实出现了,但是我尝试发送的任何英雄图像都没有显示。
Message Card Playground可以正确显示图像,但不会在Teams中显示。我对“正常”图像没有任何问题。
这是我通过Webhook发送的JSON,但是我也尝试过Twitter-Hero图像样本卡,但它也不起作用:
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"summary": "Hero card testing",
"title": null,
"text": null,
"themeColor": "19b5fe",
"sections": [
{
"title": null,
"activityImage": "https://pbs.twimg.com/profile_images/862653089916096512/ljJwcmFp_bigger.jpg",
"activityTitle": "Hero image card",
"activitySubtitle": "This is a test",
"facts": [],
"text": null,
"heroImage": {
"image": "https://pbs.twimg.com/media/DFv74A0XkAEdwQ_.jpg"
},
"images": []
}
]
}
我想念什么吗?
最佳答案
Teams当前不支持HeroImage。这是待办事项,但目前尚无ETA。
关于microsoft-teams - 队伍不显示英雄形象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45355198/