Aggiungi 'InlineKeyboard'

Daniele Callari 2020-09-28 09:42:02 +02:00
parent f7da082de2
commit 7110d83c5e

13
InlineKeyboard.md Normal file

@ -0,0 +1,13 @@
```
$bot = new TelegramBot(Config::TelegramBotToken);
$bot->debug = true;
$bot->SendMessage
(
'362870431',
"Testo di prova",
TelegramBot::ReplyMarkup (KeyboardMarkupType::InlineKeyboard,[
['text' => 'Gestisci su WiNet','url' => 'https://daxtech.net']
])
);
```