会话不维护curl php远程登录



我正在尝试使用curl远程登录php。我可以登录到网站,但会话不保持在curl响应。我已经尝试过session_write_close()如何在php中维护cURL会话?但这行不通。我也在用饼干,但没有。

这是我尝试的:

  $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天以来,我已经搜索了很多,但似乎没有任何东西适合我。

您必须将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请求

相关内容

  • 没有找到相关文章

最新更新