From c859b8006b6a179c7441764df19aa41cc11a62d8 Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Tue, 23 Jun 2026 18:18:30 +0300 Subject: [PATCH] Update: 2026-06-23 18:18:30 --- backend/auth/otp/providers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/auth/otp/providers.php b/backend/auth/otp/providers.php index 5a611ec..8f5ba9c 100644 --- a/backend/auth/otp/providers.php +++ b/backend/auth/otp/providers.php @@ -183,14 +183,14 @@ function sendIntaleqOtp(string $receiver, string $otp, string $method = 'whatsap $apiUrl = 'https://otp.intaleqapp.com/api/request-otp.php'; $payload = [ 'phone' => $receiver, + 'app_key' => $appKey, 'device_type' => 'android', 'method' => $method, 'code' => $otp ]; $response = curlCall("POST", $apiUrl, json_encode($payload), [ - 'Content-Type: application/json', - "X-App-Key: $appKey" + 'Content-Type: application/json' ]); if ($response) {