我正在使用机器人框架 v4 构建机器人。我有在频道内分享英雄卡的功能。即,如果机器人部署在 facebook 中,我们也需要在 Skype 的联系人中共享。我怎样才能做到这一点?
提前致谢。
我正在使用机器人框架 v4 构建机器人。我有在频道内分享英雄卡的功能。即,如果机器人部署在 facebook 中,我们也需要在 Skype 的联系人中共享。我怎样才能做到这一点?
提前致谢。
通过 Skype 发送的任何卡都具有转发给其他用户的功能。用户所要做的就是按下卡片侧面显示的前进按钮。但是,Skype 不支持直接在卡上添加分享按钮。
您必须通过活动的频道数据发送Messenger 模板,才能在 Facebook Messenger 上包含分享功能。在模板的元素中,您必须添加一个 type 的按钮element_share
。请参见下面的示例。
await turnContext.sendActivity({
channelData: {
"attachment": {
"type": "template",
"payload": {
"template_type": "generic",
"elements": [
{
"title": "Three Strategies for Finding Snow",
"subtitle": "How do you plan a ski trip to ensure the best conditions? You can think about a resort’s track record, or which have the best snow-making machines. Or you can gamble.",
"image_url": "https://static01.nyt.com/images/2019/02/10/travel/03update-snowfall2/03update-snowfall2-jumbo.jpg?quality=90&auto=webp",
"default_action": {
"type": "web_url",
"url": "https://www.nytimes.com/2019/02/08/travel/ski-resort-snow-conditions.html",
"messenger_extensions": false,
"webview_height_ratio": "tall"
},
"buttons": [{
"type":"element_share"
}]
}
]
}
}
}
});
希望这可以帮助!