是否可以在 gupshup 中始终显示自定义键盘(选项香草、巧克力、奶油糖果)?
原始示例:
if (event.message == "hi"){
var payload = {"type":"survey","question":"Hello,What is your
favourite flavour of icecream?","options":
["Vanilla","Chocolate","Butterscotch"]};
context.sendResponse(JSON.stringify(payload));
return;
}
if (event.message == "Vanilla"){
context.sendResponse("Ok, getting vanilla ice cream");
return;
}