Files
tangmo_fxtwitter_bot/public_html/hook.php
2022-12-30 00:43:45 +00:00

15 lines
442 B
PHP
Executable File

<?php
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/../env.php';
try {
$telegram = new Longman\TelegramBot\Telegram($bot_api_key, $bot_username);
$telegram->addCommandsPath(realpath(__DIR__ . '/../src/Commands'));
// Handle telegram webhook request
$telegram->handle();
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
// file_put_contents(__DIR__ . '/../err.txt', $e->getMessage());
}