我正在尝试创建一个FB消息程序web_url按钮,其有效负载在下面,这给我带来了错误的请求错误。知道如何使用mailto发送按钮吗?
{
"recipient":{
"id":"111111111"
},
"message":{
"attachment":{
"type":"template",
"payload":{
"template_type":"generic",
"elements":[
"buttons":[
{
"type":"web_url",
"title": "mail to...",
"url":"mailto:abcde@gmail.com"
}
]
}
]
}
}
}
}