PHP cURL Login İşlemi
Merhaba,
Login olmaya çalışıyorum ama bir türlü cookie.txt dosyasına gelen veri yazmıyor.
Giriş yapıyor muyum yapmıyor muyum bir türlü anlamadım.
$token = "bla bla bla ";
$data = array(
"encTrid" => "8fJjDy5w==",
"trid" => "",
"egp" => "",
"encEgp" => "GpTmJojMc=",
"currentToken" => $token,
"action" => "giris",
"jsonData" => "",
"submitn" => "Giriş Yap"
);
$body = json_encode($data);
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://ornek.com/gir",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => $body,
CURLOPT_HTTPHEADER => array(
"Accept: application/json",
"Content-Type: application/json"
),
CURLOPT_COOKIEJAR => realpath("cookie.txt"),
CURLOPT_COOKIEFILE => realpath("cookie.txt"),
));
echo $response = curl_exec($curl);
curl_close($curl);
Soru hatalı mı? 👎
Eğer sorunun kurallara aykırı olduğunu düşünüyorsanız lütfen bize bildirin!
Cevaplar (0)
Henüz kimse cevap yazmadı. İlk cevap yazan sen ol!