团队中的自适应卡当前不支持媒体播放

时间:2020-09-27 11:21:58

标签: javascript node.js chatbot

在为团队运行时出现以下错误:

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
    }]
};

0 个答案:

没有答案