Skip to content

Instantly share code, notes, and snippets.

@fmkoc
fmkoc / telegram.php
Last active June 22, 2025 18:15
Login with Telegram | PHP Guide
<?php
define('TELEGRAM_BOT', 'YOUR_BOT'); // Username of the bot (Generated on @BotFather)
define('TELEGRAM_TOKEN', 'YOUR:TOKEN'); // Token of the bot (Generated by @BotFather)
//Data validation function
function checkTelegramAuthorization($auth_data) {
$check_hash = $auth_data['hash'];
unset($auth_data['hash']);
$data_check_arr = [];
foreach ($auth_data as $key => $value) {