Update: 2026-06-23 18:36:09

This commit is contained in:
Hamza-Ayed
2026-06-23 18:36:09 +03:00
parent bb13eb74e8
commit ed6e34cc4b

View File

@@ -172,7 +172,7 @@ function sendNabehOtp(string $receiver, string $otp, string $method = 'text'): b
* @param string $method whatsapp | sms | voice | flash_call * @param string $method whatsapp | sms | voice | flash_call
* @return bool True if OTP was sent successfully * @return bool True if OTP was sent successfully
*/ */
function sendIntaleqOtp(string $receiver, string $otp, string $method = 'whatsapp'): bool { function sendIntaleqOtp(string $receiver, string &$otp, string $method = 'whatsapp'): bool {
$appKey = getenv('NABEH_OTP_APP_KEY'); $appKey = getenv('NABEH_OTP_APP_KEY');
if (!$appKey) { if (!$appKey) {
@@ -186,19 +186,19 @@ function sendIntaleqOtp(string $receiver, string $otp, string $method = 'whatsap
$apiUrl = 'https://otp.intaleqapp.com/api/request-otp.php'; $apiUrl = 'https://otp.intaleqapp.com/api/request-otp.php';
$payload = [ $payload = [
'phone' => $phoneWithPlus, 'phone' => $phoneWithPlus,
'device_type' => 'android', 'app_key' => $appKey
'method' => $method,
'code' => $otp
]; ];
$response = curlCall("POST", $apiUrl, json_encode($payload), [ $response = curlCall("POST", $apiUrl, json_encode($payload), [
'Content-Type: application/json', 'Content-Type: application/json'
"X-App-Key: $appKey"
]); ]);
if ($response) { if ($response) {
$decoded = json_decode($response, true); $decoded = json_decode($response, true);
if ($decoded && ($decoded['success'] ?? false)) { if ($decoded && ($decoded['success'] ?? false)) {
if (isset($decoded['otp'])) {
$otp = (string)$decoded['otp'];
}
return true; return true;
} }
$msg = "❌ [Intaleq OTP] API returned failure response: " . $response; $msg = "❌ [Intaleq OTP] API returned failure response: " . $response;