D
D
daniel_wesson2020-09-02 19:54:59
PHP
daniel_wesson, 2020-09-02 19:54:59

How to add inline telegram bot button via BotMan?

Using BotMan, I can't figure out how to attach a button to a post. Ran this:

$k = Keyboard::create()
    ->type(Keyboard::TYPE_INLINE)
    ->addRow(KeyboardButton::create("Я кнопка"))
    ->toArray();
But I don't know how to send it.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
roxblnfk, 2021-01-17
@daniel_wesson

$botMan->reply(
    $text,
    Keyboard::create()
        ->type(Keyboard::TYPE_INLINE)
        ->addRow(KeyboardButton::create("Я кнопка"))
        ->toArray()
);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question