PHP code example of wptelegram / bot-api
1. Go to this page and download the library: Download wptelegram/bot-api library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wptelegram / bot-api example snippets
$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',
] );