wpsocio/wptelegram-bot-api

Telegram Bot API library for WordPress.

v1.0.1 2024-02-10 07:23 UTC

This package is auto-updated.

Last update: 2024-04-10 07:38:39 UTC


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