我最近开始通过Microsoft Bot Framework开发Facebook机器人,我需要的一个关键功能是良好的帐户链接系统。当我做研究时,我只能找到Facebook Messenger平台的教程https://developers.facebook.com/docs/messenger-platform/account-linking 我想知道是否有人知道Microsoft Bot Framework的类似教程,或者我可以在哪里找到有关此主题的更多信息,或者是否有人有建议。
提前致谢
汆
答案 0 :(得分:4)
即使您使用的是BotFramework,您仍然希望使用Facebook的帐户链接(如上面显示的链接所述)。要启动登录,您需要创建自定义消息:
msg = new builder.Message(session);
msg.sourceEvent({
facebook: {
attachment:{
type:"template",
payload:{
template_type:"generic",
elements:[{
title:"title",
subtitle:"subtitle",
image_url:"https://en.wikipedia.org/wiki/Space_Needle.jpg",
buttons:[{
type:"account_link",
url: "https://www.someurl.com/authorize"
}]
}]
}
}
}
});