我是一名资深程序员,但我是Facebook Messenger API的新手。我已经看到API支持按照Facebook开发人员网站上的代码片段使用CURL示例来演示格式代码:
https://developers.facebook.com/docs/messenger-platform/send-api-reference/button-template
curl -X POST -H "Content-Type: application/json" -d '{
"recipient":{
"id":"USER_ID"
},
"message":{
"attachment":{
"type":"template",
"payload":{
"template_type":"button",
"text":"What do you want to do next?",
"buttons":[
{
"type":"web_url",
"url":"https://petersapparel.parseapp.com",
"title":"Show Website"
},
{
"type":"postback",
"title":"Start Chatting",
"payload":"USER_DEFINED_PAYLOAD"
}
]
}
}
}
}' "https://graph.facebook.com/v2.6/me/messages?access_token=PAGE_ACCESS_TOKEN"
这看起来像我的典型JSON。是否有一个GUI工具可以设计这些布局元素,不仅适用于按钮,还适用于API中可能存在的任何其他Facebook Messenger表单模板元素?使用拖放或其他GUI界面然后生成必要的JSON代码或片段来表示设计形式的东西?
如果是,请留下其名称或链接。
答案 0 :(得分:1)