$receiver, "type" => "text", "message" => $message, "instance_id" => $instanceId, "access_token"=> $accessToken ]; error_log("[send_whatsapp_message.php] Sending payload: " . json_encode($payload)); // إرسال الطلب $response = callAPI("POST", $apiUrl, json_encode($payload)); error_log("[send_whatsapp_message.php] Raw response: " . print_r($response, true)); // فحص الاستجابة if ($response && !isset($response->error) && (isset($response->status) && $response->status == 'success' || isset($response->message))) { jsonSuccess(null, "Message sent successfully."); } else { $errorMessage = isset($response->message) ? $response->message : "Unknown error."; error_log("[send_whatsapp_message.php] Failed to send: $errorMessage"); jsonError("Failed to send message: $errorMessage"); } // دالة cURL function callAPI($method, $url, $data) { $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => $method, CURLOPT_POSTFIELDS => $data, CURLOPT_HTTPHEADER => [ "Content-Type: application/json", "Accept: application/json" ], ]); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { error_log("[callAPI] cURL Error: $err"); return null; } else { return json_decode($response); } } ?>