您好,我正在使用 api.ai 或 dialogflow 在 Skype 中构建一个机器人,就像现在所说的那样。无论如何,这是我的自定义有效载荷:
{
"skype": {
"type": "",
"attachmentLayout": "",
"text": "",
"attachments": [
{
"contentType": "",
"content": {
"title": "",
"images": [
{
"url": ""
}
],
"buttons": [
{
"type": "",
"title": "",
"value": ""
}
]
}
}
]
}
}
这是我的 webhook 响应:
"data": {
"skype": {
"type": "message",
"attachmentLayout": "carousel",
"text": "Here you go!",
"attachments": [
{
"contentType": "application/vnd.microsoft.card.hero",
"content": {
"title": "Italian Cassoulet (Italian Chili)",
"images": [
{
"url": "http://img.food.boxspace.in/image/rbk_57139479f2705/hdpi.jpg"
}
],
"buttons": [
{
"type": "openUrl",
"title": "View Recipe",
"value": "http://recipebk.com/Share.html#url=rbk_57139479f2705"
}
]
}
}
]
}
}
}
现在,如果我嵌入这个响应,我会在 Skype 上得到一个卡片轮播的结果。但是当我对我的 webhook 尝试相同的操作时,不会显示任何消息。有人可以告诉我我做错了什么吗?已经检查了这个Stackoverflow 问题和这个api.ai 链接,但到目前为止它没有用。