telegram_config.php

518 B
08/07/2025 13:13
PHP
telegram_config.php
<?php
// Telegram Bot Configuration

// Replace 'YOUR_TELEGRAM_BOT_TOKEN' with your actual Telegram Bot API Token
define('TELEGRAM_BOT_TOKEN', 'YOUR_TELEGRAM_BOT_TOKEN');

// You might not need to define the webhook URL here if it's set via API call
// but it can be useful for constructing URLs or for reference.
define('TELEGRAM_WEBHOOK_URL', 'http://localhost/mvp-leave-bot/webhook_handler.php');

// Optional: Define your bot's username if needed for some operations
define('TELEGRAM_BOT_USERNAME', 'eleave_bot');