Merhabalar.
Curl işlemini aşağıdaki kodlar ile çalıştıramadım. Acaba laravel de curl için farklı bi kullanım veya farklı bir alternatif var mıdır?
$postParameter = array(
'sx' => $token,
'successUrl' => $successUrl,
'failUrl' => $failUrl,
'amount' => $amount,
'clientRefCode' => $clientRefCode,
'use3D' => $use3D,
'rnd' => $rnd,
'detail' => $detail,
'transactionType' => $transactionType,
'hashData' => $hashData
);
$curlHandle = curl_init();
curl_setopt($curlHandle, CURLOPT_URL, 'https://paynkolaytest.nkolayislem.com.tr/Vpos');
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, $postParameter);
curl_setopt($curlHandle, CURLOPT_POST, 1);
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
$curlResponse = curl_exec($curlHandle);
curl_close($curlHandle);