跳至主要内容

互動消息

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
}