Stars: 114
Forks: 31
Pull Requests: 9
Issues: 10
Watchers: 8
Last Updated: 2023-08-21 08:49:11
TuriBot is a simple way to communicate with Telegram APIs in PHP
License: GNU Affero General Public License v3.0
Languages: PHP
TuriBot is a simple way to communicate with Telegram APIs in PHP
PHP 7.1 or higher with curl extension
PHP 8.1 or higher, you need to install amp from composer
composer require davtur19/turibot 1.x
composer init --name=your.name/yourbot --no-interaction
composer config minimum-stability dev
composer require davtur19/turibot 2.x
Setup recommended: open setupWebhook.php in your browser and follow the setup wizard.
Manual setup: set webhook to the file webhook.php, and as parameter GET "api" set your token.
Example for manual setup:
curl https://api.telegram.org/botTOKEN/setWebhook?url=https://WEBSITE/DIR/webhook.php?api=TOKEN
Alternatively if you don't want to use GET, just change this piece of code.
reply_markup
, permissions
, commands
, entities
and parameters that require arrays, already have a json_encode in the functions, you just need to pass arrayshttps://github.com/php-telegram-bot/core/wiki/Securing-&-Hardening-your-Telegram-Bot
With the Bot API 5.0 it is now possible to self host your own Bot API, here is an example of how to add your own endpoint
//token, json_payload, endpoint
$client = new Client("1234:AAbbccdd", false, "http://endpoint/bot");
Only works with webhooks, for more info: https://core.telegram.org/bots/faq#how-can-i-make-requests-in-response-to-updates
I do not recommend using it as it may need a particular configuration to the webserver for flushing and you cannot get a response from the Bot API
https://github.com/davtur19/TuriBotGen
I don't recommend its use, but it could be useful for those unfamiliar with OOP and would like to start learning how PHP and Telegram Bot Api work.