会话不维护curl php远程登录

时间:2014-08-20 05:52:47

标签: php session curl remote-login

我正在尝试使用curl php进行远程登录。我可以登录到网站,但会话没有保持卷曲响应。我已尝试将session_write_close()作为how to maintain session in cURL in php?,但它无效。我也在使用cookies,但没有。

这是我试过的:

  $ch = curl_init();

  $params['ror_csrf_token'] = $hiddenValue;
  $params['n'] = '';
  $params['email'] = 'xxx.xxx@evontech.com';
  $params['password'] = 'xx';
  $params['remember_me'] = 'on';

  $form_action_url = 'http://www.xxxxxxxx.com/go/login';
  $postData = '';
  foreach($params as $k => $v)
  {
     $postData .= $k.'='.$v.'&';
  }
  $postData = rtrim($postData, '&');
  print_r($postData);
  $theaders[] = "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
  $theaders[] = "Content-Type: application/x-www-form-urlencoded";
  $theaders[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
  $theaders[] = "Accept-Encoding: gzip,deflate,sdch";
  $theaders[] = "Accept-Language: en-US,en;q=0.8";
  $theaders[] = "Cache-Control: max-age=0";
  //$theaders[] = "Connection: keep-alive";
  //$theaders[] = "Content-Length: 119";
  curl_setopt($ch, CURLOPT_URL,$form_action_url);
  //curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 100);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);//follow redirection
  curl_setopt($ch, CURLOPT_AUTOREFERER, true);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt'); // set cookie file to given file
  //curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt'); // set same file as cookie jar
  //curl_setopt($ch, CURLOPT_COOKIE, 'cookies.txt');
  curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36');
  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);   
  curl_setopt($ch, CURLOPT_HTTPHEADER, $theaders);


  curl_setopt($ch, CURLOPT_HEADER, false);
  curl_setopt($ch, CURLOPT_COOKIESESSION, true);
  //curl_setopt($ch, CURLOPT_NOBODY, false);
  //curl_setopt($ch, CURLOPT_REFERER, "http://www.ripoffreport.com/go/login");      
  //curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  //curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

  echo $content = curl_exec($ch);
  $headers = curl_getinfo($ch); 
  $errors  = curl_error($ch);

  echo "<pre>";
  print_r($headers);
  curl_close ($ch);
  

注意:我从10天开始搜索了很多内容,但似乎没有什么对我有用。

1 个答案:

答案 0 :(得分:1)

您必须将CURLOPT_COOKIEJARCURLOPT_COOKIEFILE选项设置为相同的绝对路径值('cookies.txt'是相对路径)。 这是必要的,以便在脚本将具有的重定向系列中启用cookie自动处理(以及因此,会话维护)。

此外,您不应将CURLOPT_CUSTOMREQUESTCURLOPT_POST选项放在一起,只能设置其中一个(CURLOPT_POST)。

所以脚本应该有以下几行:

curl_setopt($ch, CURLOPT_COOKIEFILE, dirname(__FILE__).'/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEJAR, dirname(__FILE__).'/cookies.txt');

BTW session_write_close()不会影响CURL请求。