在为团队运行时出现以下错误:
Media playback is currently not supported in Adaptive Cards in Teams
这是我的代码:
let list = {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.3",
"body": [{
"type": "Media",
"poster": "https://adaptivecards.io/content/poster-video.png",
"sources": [{
"mimeType": "video/mp4",
"url": config.faq.primaryVideo
}]
}],
"actions": [{
"type": "Action.OpenUrl",
"title": "For more",
"url": config.faq.videoUrl
}]
};