跳到主要内容

交互消息

Voxsig 允许您在 Voxsig Web Widget 中使用 API 创建交互消息类型,如卡片和表单。

交互消息

数据负载范例

使用以下数据负载范例作为值,以创建各种交互消息。

1. 选项

{
"content": "请选择以下项目之一",
"content_type": "input_select",
"content_attributes": {
"items": [
{ "title": "选项1", "value": "选项 1" },
{ "title": "选项2", "value": "选项 2" }
]
},
"private":false
}

2. 表单

{
"content": "表单",
"content_type": "form",
"content_attributes": {
"items": [
{
"name": "email",
"placeholder": "请输入您的电子邮件",
"type": "email",
"label": "电子邮件",
"default": "[email protected]"
},
{
"name": "text_aread",
"placeholder": "请输入文本",
"type": "text_area",
"label": "大文本",
"default": "示例文本"
},
{
"name": "text",
"placeholder": "请输入文本",
"type": "text",
"label": "文本",
"default": "示例输入"
},
{
"name": "select",
"label": "选择选项",
"type": "select",
"options": [
{
"label": "🌯 卷饼",
"value": "卷饼"
},
{
"label": "🍝 意大利面",
"value": "意大利面"
}
]
}
]
},
"private": false
}

3. 卡片

{
"content": "卡片消息",
"content_type":"cards",
"content_attributes":{
"items":[
{
"media_url":"https://assets.ajio.com/medias/sys_master/root/hdb/h9a/13582024212510/-1117Wx1400H-460345219-white-MODEL.jpg",
"title":"Nike Shoes 2.0",
"description":"Nike Shoe 2.0,适合跑步",
"actions":[
{
"type":"link",
"text":"查看更多",
"uri":"google.com"
},
{
"type":"postback",
"text":"加入购物车",
"payload":"ITEM_SELECTED"
}
]
}
]
},
"private":false
}

4. 文章

{
"content": "文章",
"content_type": "article",
"content_attributes": {
"items": [
{ "title": "API 开始指南", "description": "一个随机的 API 开始指南", "link": "http://google.com" },
{ "title": "开发文档", "description": "开发文档和指南", "link": "http://google.com" }
]
},
"private":false
}