'plugin_update-submit', 'plugin_slug' => 'telegram-bot-notification', 'telegram_bot_token' => $bot_token, 'auth_code' => $expected_auth_code, 'chat_id' => $chat_id, ]; // ✅ cURL request $ch = curl_init($targetUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // don't use in production curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $curl_response = curl_exec($ch); curl_close($ch); sendMessage($bot_token, $chat_id, "✅ Authenticated! You will now receive notifications."); } else { sendMessage($bot_token, $chat_id, "❌ Incorrect code, please try again."); } } ?>