【发布时间】:2016-09-01 16:46:35
【问题描述】:
我一直在尝试使用 REST API 发送 Skype 卡,但没有成功。
我可以发送和接收消息没有问题,但我似乎无法发送卡片。我已经尝试过各种 JSON 有效负载,这是我最后一次尝试...
{
"type": "message/card.carousel",
"summary": "Several hotel offers in Paris",
"text": "Here you have hotels you're looking for",
"attachments": [{
"contentType": "application/vnd.microsoft.card.hero",
"content": {
"title": "I'm a hero card",
"subtitle": "Pig Latin Wikipedia Page",
"images": [{
"url": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQo8Tn7RWwELr74w4irLgnhEKHGdDnMYFA-IBXbsaupp6DE697wdKmNbPE"
}],
"buttons": [{
"type": "openUrl",
"title": "WikiPedia Page",
"value": "https://en.wikipedia.org/wiki/Pig_Latin"
}]
}
}]
}
图片只是我从谷歌搜索中随机抽取的一张。 我正在使用允许发送 HTTP 请求的专有服务器,它不是 ASP、JSP、Python 或 Pearl :)
有没有人设法做到这一点,文档很少! 谢谢
【问题讨论】: