我一直在寻找可以帮助我解决这个问题的事情。
这是我想用curl模拟登录的示例FORM
<form action="http://www.website.com/login?from=login" class="lightbox_form" method="post" name="login">
<input name="authenticity" type="hidden" value="da1249c71258cd02a8bd038cf3ccca1c9ebef155" />
<input type="text" name="login_or_email" size="20" class="input" id="login">
<input type="password" size="20" name="login_password" class="input" id="word_user">
<button type="submit" class="new_submit"><span class="inner">Log In</span></button>
</form>
如果看到下面的内容
<input name="authenticity" type="hidden" value="da1249c71258cd02a8bd038cf3ccca1c9ebef155" />
这是自动生成的隐藏值,每次重新加载网站时都会更改。
我正在使用CURL,但我不知道如何获取隐藏字段并在同一会话中提交。尝试使用get_meta_tags但不起作用
set_time_limit(0);
$http_agent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 ( .NET CLR 3.5.30729)";
$header = array();
$header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
$header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
$header[] = "Cache-Control: max-age=0";
$header[] = "Connection: keep-alive";
$header[] = "Keep-Alive: 300";
$header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
$header[] = "Accept-Language: en-us,en;q=0.5";
$header[] = "Pragma: "; // browsers keep this blank.
curl_setopt($ch, CURLOPT_URL, "http://www.website.com/login?from=login");
curl_setopt( $ch, CURLOPT_USERAGENT, $http_agent );
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_COOKIEJAR, ROOT_DIR.'cookies.txt');
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
//curl_setopt($ch, CURLOPT_POSTFIELDS, 'login_or_email=mail&login_password=pass&authenticity_token='.$cag.'');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
//print $output;
print_r ($output);
有什么想法吗?
答案 0 :(得分:1)
我认为您必须手动解析curl_exec
调用返回的HTML。 curl库不会为您处理HTML,它会处理HTTP内容,但处理从服务器返回的数据取决于您的应用程序。
答案 1 :(得分:1)
您可以使用pret_match()来获取随机值
//$html is the return of the curl request
preg_match('/<input name="authenticity" type="hidden" value="([^"]*)" \/>/', $html, $match);
该值将在$ match [1]中。
答案 2 :(得分:0)
$regex= '/<input name="authenticity" type="hidden" value="([^"]*)" \/>/i';
if ( preg_match($regex, $html, $list) )
$rand= $list[0];
else
print "Not found";