wptelegram / bot-api
This package is abandoned and no longer maintained.
The author suggests using the wpsocio/wptelegram-bot-api package instead.
Telegram Bot API library for WordPress.
v1.0.2
2025-04-27 15:15 UTC
Requires (Dev)
- pestphp/pest: ^1.23
- wp-coding-standards/wpcs: ^3.1
- z4kn4fein/php-semver: ^3.0
README
Telegram Bot API library for WordPress.
Usage
composer require wpsocio/wptelegram-bot-api
require_once __DIR__ . '/autoload.php'; $bot_token = 'YOUR BOT TOKEN HERE'; $bot_api = new \WPTelegram\BotAPI\API( $bot_token ); $bot_api->sendMessage( [ 'chat_id' => 123456789, 'text' => 'Hello World', ] ); $bot_api->sendPhoto( [ 'chat_id' => 123456789, 'photo' => 'https://domain.com/path/to/photo.jpg', ] );
Requirements
PHP >= 8.0
WP >= 6.4