1

我正在发送此帖子请求以及所有卡片,如缩略图、轮播、英雄出现,但卡片图像未显示。我尝试了很多不同的东西,但还没有奏效。

我正在用 python 创建一个机器人,一切正常,接受这个问题。

这些是我寻找问题的一些链接。但似乎我做的一切都是正确的。有什么帮助吗?

https://docs.botframework.com/en-us/skype/chat/#navtitle

{
'text': 'testinglookssuccessful',
'type': 'message/card.carousel',
'attachments': [{
    'content': {
        'images': [{
            'image': 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Seattlenighttimequeenanne.jpg/320px-Seattlenighttimequeenanne.jpg',
            'alt': 'hello'
        }],
        'text': 'cardtext',
        'buttons': [{
            'type': 'imBack',
            'value': 'testingsuccess',
            'title': 'test1'
        }],
        'subtitle': 'herocardsubtitle',
        'title': 'herocardtest'
    },
    'contentType': 'application/vnd.microsoft.card.hero'
}],
'summary': 'thisismyfirstskypebot'}

这就是我通过机器人将其发送到 Skype 时出现的内容。

英雄卡Skype测试机器人截图

4

1 回答 1

0

问题解决了 :

问题在于https://docs.botframework.com/en-us/skype/chat/#navtitle文档中错误提及的“图像”键。我用 'url' 键替换了 'image' 键

于 2016-08-10T14:32:52.343 回答