cURLを使用してリダイレクト先を見つけるにはどうすればよいですか?


149

curlをリダイレクトに従うようにしていますが、正しく機能させることができません。GETパラメータとしてサーバーに送信し、結果のURLを取得する文字列があります。

例:

文字列= コボルドヴァーミン
URL = www.wowhead.com/search?q=Kobold+Worker

そのURLにアクセスすると、「www.wowhead.com/npc=257」にリダイレクトされます。「npc = 257」を抽出して使用できるように、curlがこのURLをPHPコードに返すようにします。

現在のコード:

function npcID($name) {
    $urltopost = "http://www.wowhead.com/search?q=" . $name;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1");
    curl_setopt($ch, CURLOPT_URL, $urltopost);
    curl_setopt($ch, CURLOPT_REFERER, "http://www.wowhead.com");
    curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type:application/x-www-form-urlencoded"));
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
    return curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
}

ただし、これはwww.wowhead.com/npc=257ではなくwww.wowhead.com/search?q=Kobold+Workerを返します。

外部リダイレクトが発生する前にPHPが戻ってくるのではないかと思います。どうすれば修正できますか?


8
これは、「curl follow redirects」の上位の質問の1つです。curlコマンドを使用してリダイレクトを自動的に追跡するには、-Lor --locationフラグを渡します。例curl -L http://example.com/
Rob W

回答:


256

cURLがリダイレクトに従うようにするには、以下を使用します。

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

えーと...実際にカールを実行しているとは思わない...試してみる:

curl_exec($ch);

...オプションを設定した後、curl_getinfo()呼び出しの前。

編集:ページのリダイレクト先を確認したい場合は、ここでアドバイスを使用し、Curlを使用してヘッダーを取得し、そこからLocation:ヘッダーを抽出します。

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
if (preg_match('~Location: (.*)~i', $result, $match)) {
   $location = trim($match[1]);
}

2
これにより、phpはリダイレクトに従います。リダイレクトを追跡したくありません。リダイレクトされたページのURLを知りたいだけです。
Thomas Van Nuffel、2010

9
ああ、だからあなたは実際にページをフェッチしたくないのですか?場所を見つけてください。その場合、私はここで使用される戦術をお勧めします:zzz.rezo.net/HowTo-Expand-Short-URLs.html-基本的に、リダイレクトするページからヘッダーを取得し、そこからLocation:ヘッダーを取得します。ただし、いずれにしても、実際に何かを実行するに、Curlのexec()を実行する必要があります...
マットギブソン

1
このソリューションでは複数のリダイレクトが考慮されないため、以下のLuca Camillosソリューションを検討することをお勧めします。
クリスチャンエンゲル

このソリューションは、同じURL内で新しいWebページを開きます。パラメータをそのURLに投稿するとともに、URLも変更したいと思います。どうすればそれを達成できますか?
amanpurohit 2015年

$ httpCode = curl_getinfo($ handle、CURLINFO_HTTP_CODE);を使用する場合の@MattGibson CURLOPT_FOLLOWLOCATIONをtrueに設定すると、httpcodeが何になります。つまり、最初のURLまたはリダイレクトURLのいずれか
Manigandan Arjunan '10

26

この行をカールの初期化に追加します

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

curl_closeの前にgetinfoを使用します

$redirectURL = curl_getinfo($ch,CURLINFO_EFFECTIVE_URL );

es:

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT ,0); 
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
$html = curl_exec($ch);
$redirectURL = curl_getinfo($ch,CURLINFO_EFFECTIVE_URL );
curl_close($ch);

2
これも複数のリダイレクトを展開するため、これがより良い解決策であると思います。
クリスチャンエンゲル

覚えておいてください:(ok、duh)POSTデータはリダイレクト後に再送信されません。私の場合、これが起こり、後で愚かになりました:適切なURLを使用するだけで修正されます。
Twicejr

使用curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);はセキュリティ上の脆弱性です。基本的には、「SSLエラーが発生しても無視します–暗号化されていないURLと同じように信頼してください。」と書かれています。
Finesse、2018

8

上記の答えは、サーバーの1つでは動作しませんでした。basedirとは関係があるため、少しハッシュ化し直しました。以下のコードはすべてのサーバーで機能します。

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$a = curl_exec($ch);
curl_close( $ch ); 
// the returned headers
$headers = explode("\n",$a);
// if there is no redirection this will be the final url
$redir = $url;
// loop through the headers and check for a Location: str
$j = count($headers);
for($i = 0; $i < $j; $i++){
// if we find the Location header strip it and fill the redir var       
if(strpos($headers[$i],"Location:") !== false){
        $redir = trim(str_replace("Location:","",$headers[$i]));
        break;
    }
}
// do whatever you want with the result
echo redir;

Location: ヘッダはリダイレクトを追跡するために、常にではありません。また、これについて明記された質問もご覧ください
。curlfollow

5

ここで選択した答えはまともですが、大文字と小文字が区別され、location:実際のフレーズを含む可能性のある相対ヘッダー(一部のサイトではそうです)またはページから保護されませんLocation:れ、コンテンツにを(現在はzillowです)からは保護されません。

少しずさんですが、これを少し賢くするためのいくつかの簡単な編集は次のとおりです。

function getOriginalURL($url) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    $result = curl_exec($ch);
    $httpStatus = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    // if it's not a redirection (3XX), move along
    if ($httpStatus < 300 || $httpStatus >= 400)
        return $url;

    // look for a location: header to find the target URL
    if(preg_match('/location: (.*)/i', $result, $r)) {
        $location = trim($r[1]);

        // if the location is a relative URL, attempt to make it absolute
        if (preg_match('/^\/(.*)/', $location)) {
            $urlParts = parse_url($url);
            if ($urlParts['scheme'])
                $baseURL = $urlParts['scheme'].'://';

            if ($urlParts['host'])
                $baseURL .= $urlParts['host'];

            if ($urlParts['port'])
                $baseURL .= ':'.$urlParts['port'];

            return $baseURL.$location;
        }

        return $location;
    }
    return $url;
}

ただし、これは1つのリダイレクトの深さだけに過ぎないことに注意してください。さらに深く理解するには、実際にコンテンツを取得してリダイレクトに従う必要があります。


5

場合によっては、HTTPヘッダーを取得する必要がありますが、同時にそれらのヘッダーを返したくありません。**

このスケルトンは、再帰を使用してCookieとHTTPリダイレクトを処理します。ここでの主なアイデアは、クライアントコードにHTTPヘッダー返されないようにすることです。

その上に非常に強力なカールクラスを構築できます。POST機能などを追加します。

<?php

class curl {

  static private $cookie_file            = '';
  static private $user_agent             = '';  
  static private $max_redirects          = 10;  
  static private $followlocation_allowed = true;

  function __construct()
  {
    // set a file to store cookies
    self::$cookie_file = 'cookies.txt';

    // set some general User Agent
    self::$user_agent = 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)';

    if ( ! file_exists(self::$cookie_file) || ! is_writable(self::$cookie_file))
    {
      throw new Exception('Cookie file missing or not writable.');
    }

    // check for PHP settings that unfits
    // correct functioning of CURLOPT_FOLLOWLOCATION 
    if (ini_get('open_basedir') != '' || ini_get('safe_mode') == 'On')
    {
      self::$followlocation_allowed = false;
    }    
  }

  /**
   * Main method for GET requests
   * @param  string $url URI to get
   * @return string      request's body
   */
  static public function get($url)
  {
    $process = curl_init($url);    

    self::_set_basic_options($process);

    // this function is in charge of output request's body
    // so DO NOT include HTTP headers
    curl_setopt($process, CURLOPT_HEADER, 0);

    if (self::$followlocation_allowed)
    {
      // if PHP settings allow it use AUTOMATIC REDIRECTION
      curl_setopt($process, CURLOPT_FOLLOWLOCATION, true);
      curl_setopt($process, CURLOPT_MAXREDIRS, self::$max_redirects); 
    }
    else
    {
      curl_setopt($process, CURLOPT_FOLLOWLOCATION, false);
    }

    $return = curl_exec($process);

    if ($return === false)
    {
      throw new Exception('Curl error: ' . curl_error($process));
    }

    // test for redirection HTTP codes
    $code = curl_getinfo($process, CURLINFO_HTTP_CODE);
    if ($code == 301 || $code == 302)
    {
      curl_close($process);

      try
      {
        // go to extract new Location URI
        $location = self::_parse_redirection_header($url);
      }
      catch (Exception $e)
      {
        throw $e;
      }

      // IMPORTANT return 
      return self::get($location);
    }

    curl_close($process);

    return $return;
  }

  static function _set_basic_options($process)
  {

    curl_setopt($process, CURLOPT_USERAGENT, self::$user_agent);
    curl_setopt($process, CURLOPT_COOKIEFILE, self::$cookie_file);
    curl_setopt($process, CURLOPT_COOKIEJAR, self::$cookie_file);
    curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
    // curl_setopt($process, CURLOPT_VERBOSE, 1);
    // curl_setopt($process, CURLOPT_SSL_VERIFYHOST, false);
    // curl_setopt($process, CURLOPT_SSL_VERIFYPEER, false);
  }

  static function _parse_redirection_header($url)
  {
    $process = curl_init($url);    

    self::_set_basic_options($process);

    // NOW we need to parse HTTP headers
    curl_setopt($process, CURLOPT_HEADER, 1);

    $return = curl_exec($process);

    if ($return === false)
    {
      throw new Exception('Curl error: ' . curl_error($process));
    }

    curl_close($process);

    if ( ! preg_match('#Location: (.*)#', $return, $location))
    {
      throw new Exception('No Location found');
    }

    if (self::$max_redirects-- <= 0)
    {
      throw new Exception('Max redirections reached trying to get: ' . $url);
    }

    return trim($location[1]);
  }

}

0

ここに正規表現がたくさんありますが、私はこの方法を本当に気に入っているにもかかわらず、私にとってはより安定しているかもしれません。

$resultCurl=curl_exec($curl); //get curl result
//Optional line if you want to store the http status code
$headerHttpCode=curl_getinfo($curl,CURLINFO_HTTP_CODE);

//let's use dom and xpath
$dom = new \DOMDocument();
libxml_use_internal_errors(true);
$dom->loadHTML($resultCurl, LIBXML_HTML_NODEFDTD);
libxml_use_internal_errors(false);
$xpath = new \DOMXPath($dom);
$head=$xpath->query("/html/body/p/a/@href");

$newUrl=$head[0]->nodeValue;

ロケーション部分は、Apacheによって送信されるHTML内のリンクです。したがって、Xpathはそれを回復するのに最適です。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.