1

我正在尝试使用 curl php 远程登录。我可以登录到站点,但会话未在 curl 响应中保持。我尝试session_write_close()如何在 php 中维护 cURL 中的会话?但它不起作用。我也在使用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 天以来,我已经在 Google 上搜索了很多,但似乎没有任何东西对我有用。

4

1 回答 1

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');

顺便说一句session_write_close()不影响 CURL 请求。

于 2014-08-20T06:03:44.893 回答