telegram-bot-api
telegram-bot-api copied to clipboard
Telegram Bot API Client
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...