我試圖刮掉與登錄的一個網站的內容安全 但無法做到這一點 該網站的登錄有三個選項的用戶名,密碼,驗證碼 這裏是我的代碼使用刮網站內容與安全登錄
<?php
// HTTP authentication
$url = "http://aftabcurrency.com/login_script.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$cookie = 'cookies.txt';
$timeout = 30;
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookie);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch,CURLOPT_POSTFIELDS,"user_name=user&user_password=pass&passcode=code");
$result = curl_exec($ch);
curl_close($ch);
echo $result;
?>
我想這代碼與你的答案被接受的變化,但是這個代碼不爲我工作,我用我的亞馬遜賣家賬戶的詳細信息但沒有任何事情發生,你能指導我一些,因爲我是PHP的新手。 –