telegram-bot-api icon indicating copy to clipboard operation
telegram-bot-api copied to clipboard

Telegram Bot API Client

Results 3 telegram-bot-api issues
Sort by recently updated
recently updated
newest added

Add deleteMessage !!

Hi! When I'm trying send message with inlineKeyboard (using `reply_markup`). ``` ... $buttons[] = [new InlineKeyboardButton([ 'text' => $route->name, 'callback_data' => $route->id ])]; ... 'reply_markup' => new InlineKeyboardMarkup(['inline_keyboard' => $buttons])...

my codes for sending audio file is like this ``` $url = 'http://test/test.mp3'; sendAudio([ 'audio' => fopen($url ,'r') ]); ``` it works great for small files but if url file...