Можно ли всегда показывать пользовательскую клавиатуру (опция Vanilla, Chocolate, Butterscotch) в 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;
}