甚至我也不确定那是什么,工作场所聊天应用程序是否支持Webview。我正在使用他们为facebook Messenger应用程序提供的示例,以及我在工作场所聊天中使用的示例。
消息是:
let message = {
"attachment":{
"type":"template",
"payload":{
"template_type":"generic",
"elements": [{
"title":"I took Peter's 'Which Hat Are You?' Quiz",
"image_url": "https://bot.peters-hats.com/img/hats/fez.jpg",
"subtitle": "My result: Fez",
"default_action":{
"type":"web_url",
"url":"url":SERVER_URL + "/options",
},
"buttons":[{
"type":"web_url",
"url":SERVER_URL + "/options",
"title":"open link"
}]
}]
}
}
};
当我单击open link
时,它将在浏览器中而不是在Webview中打开。但是我在Messenger中测试了它在Webview中打开的情况。