A very simple PHP Telegram Bot API for sending messages.
(Almost) Compliant with the May 18, 2017 Telegram Bot API update.
For the WebHook:
For the GetUpdates:
include("Telegram.php");
$telegram = new Telegram($bot_id);
From your project directory, run
composer require eleirbag89/telegrambotphp
Navigate to https://api.telegram.org/bot(BOT_ID)/setWebhook?url=https://yoursite.com/your_update.php Or use the Telegram class setWebhook method.
$telegram = new Telegram($bot_id);
$chat_id = $telegram->ChatID();
$content = array('chat_id' => $chat_id, 'text' => "Test");
$telegram->sendMessage($content);
If you want to get some specific parameter from the Telegram response:
$telegram = new Telegram($bot_id);
$result = $telegram->getData();
$text = $result["message"] ["text"];
$chat_id = $result["message"] ["chat"]["id"];
$content = array('chat_id' => $chat_id, 'text' => "Test");
$telegram->sendMessage($content);
To upload a Photo or some other files, you need to load it with CurlFile:
// Load a local file to upload. If is already on Telegram's Servers just pass the resource id
$img = curl_file_create('test.png','image/png');
$content = array('chat_id' => $chat_id, 'photo' => $img );
$telegram->sendPhoto($content);
To download a file on the Telegram’s servers
$file = $telegram->getFile($file_id);
$telegram->downloadFile($file["result"]["file_path"], "./my_downloaded_file_on_local_server.png");
See update.php or update cowsay.php for the complete example. If you wanna see the CowSay Bot in action add it.
If you want to use GetUpdates instead of the WebHook you need to call the the serveUpdate
function inside a for cycle.
$req = $telegram->getUpdates();
for ($i = 0; $i < $telegram-> UpdateCount(); $i++) {
// You NEED to call serveUpdate before accessing the values of message in Telegram Class
$telegram->serveUpdate($i);
$text = $telegram->Text();
$chat_id = $telegram->ChatID();
if ($text == "/start") {
$reply = "Working";
$content = array('chat_id' => $chat_id, 'text' => $reply);
$telegram->sendMessage($content);
}
// DO OTHER STUFF
}
See getUpdates.php for the complete example.
For a complete and up-to-date functions documentation check http://eleirbag89.github.io/TelegramBotPHP/
Telegram’s bots can have two different kind of keyboards: Inline and Reply.
The InlineKeyboard is linked to a particular message, while the ReplyKeyboard is linked to the whole chat.
They are both an array of array of buttons, which rapresent the rows and columns.
For instance you can arrange a ReplyKeyboard like this:
using this code:
$option = array(
//First row
array($telegram->buildKeyboardButton("Button 1"), $telegram->buildKeyboardButton("Button 2")),
//Second row
array($telegram->buildKeyboardButton("Button 3"), $telegram->buildKeyboardButton("Button 4"), $telegram->buildKeyboardButton("Button 5")),
//Third row
array($telegram->buildKeyboardButton("Button 6")) );
$keyb = $telegram->buildKeyBoard($option, $onetime=false);
$content = array('chat_id' => $chat_id, 'reply_markup' => $keyb, 'text' => "This is a Keyboard Test");
$telegram->sendMessage($content);
When a user click on the button, the button text is send back to the bot.
For an InlineKeyboard it’s pretty much the same (but you need to provide a valid URL or a Callback data)
$option = array(
//First row
array($telegram->buildInlineKeyBoardButton("Button 1", $url="http://link1.com"), $telegram->buildInlineKeyBoardButton("Button 2", $url="http://link2.com")),
//Second row
array($telegram->buildInlineKeyBoardButton("Button 3", $url="http://link3.com"), $telegram->buildInlineKeyBoardButton("Button 4", $url="http://link4.com"), $telegram->buildInlineKeyBoardButton("Button 5", $url="http://link5.com")),
//Third row
array($telegram->buildInlineKeyBoardButton("Button 6", $url="http://link6.com")) );
$keyb = $telegram->buildInlineKeyBoard($option);
$content = array('chat_id' => $chat_id, 'reply_markup' => $keyb, 'text' => "This is a Keyboard Test");
$telegram->sendMessage($content);
This is the list of all the helper functions to make keyboards easily:
buildKeyBoard(array $options, $onetime=true, $resize=true, $selective=true)
Send a custom keyboard. $option is an array of array KeyboardButton.
Check ReplyKeyBoardMarkUp for more info.
buildInlineKeyBoard(array $inline_keyboard)
Send a custom keyboard. $inline_keyboard is an array of array InlineKeyboardButton.
Check InlineKeyboardMarkup for more info.
buildInlineKeyBoardButton($text, $url, $callback_data, $switch_inline_query)
Create an InlineKeyboardButton.
Check InlineKeyBoardButton for more info.
buildKeyBoardButton($text, $url, $request_contact, $request_location)
Create a KeyboardButton.
Check KeyBoardButton for more info.
buildKeyBoardHide($selective=true)
Hide a custom keyboard.
Check ReplyKeyBoarHide for more info.
buildForceReply($selective=true)
Show a Reply interface to the user.
Check ForceReply for more info.
Let me know using this Issue if you have made a bot using this API, I will add it to this section.
For a list of emoticons to use in your bot messages, please refer to the column Bytes of this table: http://apps.timwhitlock.info/emoji/tables/unicode
You can contact me via Telegram but if you have an issue please open one.
You can buy me a beer or two using Paypal
or support me using Flattr.