Skip to content

wpsocio/wptelegram-bot-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WP Telegram Bot API

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