| การตอบกลับ | {
"type": "text", // 1
"text": "Select your favorite food category or send me your location!",
"quickReply": { // 2
"items": [
{
"type": "action", // 3
"imageUrl": "https://example.com/sushi.png",
"action": {
"type": "message",
"label": "Sushi",
"text": "Sushi"
}
},
{
"type": "action",
"imageUrl": "https://example.com/tempura.png",
"action": {
"type": "message",
"label": "Tempura",
"text": "Tempura"
}
},
{
"type": "action", // 4
"action": {
"type": "location",
"label": "Send location"
}
}
]
}
} |