我正在嘗試使用英雄圖像標籤發送連接器卡。連接器卡中的HeroImage wornt顯示
我遵循MessageCard Playground 的示例,但即使正確複製示例,它們也不會顯示。沒有錯誤,卡片顯示很好,除了英雄形象。
的json
我送:
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"summary": "Task 42",
"title": "Task Done: \"Building the Super Computer\"",
"sections": [
{
"activityTitle": "Mice of Earth",
"activitySubtitle": "9/13/2016, 11:46am",
"activityImage": "http://static.website.com/images/smallimage.jpg",
"facts": [
{
"name": "Team:",
"value": "Team-Poster"
},
{
"name": "Task #:",
"value": "42"
}
],
"text": "Build supercomputer to answer the ultimate question",
"heroImage": {
"image": "http://static.website.com/images/party-1644648_1920.jpg",
"title": "This is the image's alternate text"
},
}
]
}
展望採取行動的消息documentation還講述了主人公形象會談,但缺乏的例子。
我意識到我的問題是重複的: https://stackoverflow.com/questions/45355198/teams-doesnt-display-hero-image?rq=1 但是我不能標記這個我自己。對不起 – PeaceDealer