Гупшуп всегда виден Custom Keyboard - PullRequest
1 голос
/ 11 июня 2019

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