Hey there I was wondering if it is possible to replicate how telegram does a keyboard markup instead of commands (With callbacks, e.g. user presses verify and it will do xxx)? I find it way easier and more suitable for my use cases. Would it be possible to do such? I am quite new to rocket chat so all the docs seem to be a brick wall for me at the moment.
I would appreciate the help a lot! Thanks in advance <3
Alright appreciate it, I did give the docs a look but couldnât find much of a reference to making a bot to do such a system so I kinda just came here to ask this question
Hey I did mean Bots/App sorry about that, forgot to mention it. I want to basically create a bot where a user can message privately and it will respond with a keyboard/ button menu that letâs a person follow a dialog.
Hi, Iâm trying to create something similar using ui kit. In response to the message from the first bot, a message with two buttons is generated. But I ran into this problem. What do I need to pass the values ââof my
block.addInputBlock({
blockId: âcommentInputâ,
element: block.newPlainTextInputElement({
actionId: âcommentActionâ,
placeholder: block.newPlainTextObject(âComment fieldâ),
}),
label: block.newPlainTextObject(âComment fieldâ),
});
Parameter in the code, and the user fills in this block as they work in rocket chat! That is, it needs to be updated as soon as there is text in it. But I canât do it. However, I was able to implement the function of, for example, sending requests to the server!