web-dev-qa-db-ja.com

Ruby-net / http-以下のリダイレクト

URLを取得し、HTTP GETを使用してクエリをページに渡します。最新のフレーバーで何が起こるか(net/http)は、スクリプトが302応答を超えないことです。私はいくつかの異なるソリューションを試しました。 HTTPClient、net/http、Rest-Client、Patron ...

そのページのhtmlの属性タグを検証するには、最終ページに進む方法が必要です。リダイレクトは、モバイルユーザーエージェントがモバイルビューにリダイレクトするページにヒットするため、ヘッダーのモバイルユーザーエージェントが原因です。今日の私のコードは次のとおりです。

require 'uri'
require 'net/http'

class Check_Get_Page

    def more_http
        url = URI.parse('my_url')
        req, data = Net::HTTP::Get.new(url.path, {
        'User-Agent' => 'Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_2 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5'
        })
        res = Net::HTTP.start(url.Host, url.port) {|http|
        http.request(req)
            }
        cookie = res.response['set-cookie']
        puts 'Body = ' + res.body
        puts 'Message = ' + res.message
        puts 'Code = ' + res.code
        puts "Cookie \n" + cookie
    end

end

m = Check_Get_Page.new
m.more_http

どんな提案も大歓迎です!

35
r3nrut

リダイレクトに従うには、次のようにします( taken from Ruby-doc

リダイレクト後

require 'net/http'
require 'uri'

def fetch(uri_str, limit = 10)
  # You should choose better exception.
  raise ArgumentError, 'HTTP redirect too deep' if limit == 0

  url = URI.parse(uri_str)
  req = Net::HTTP::Get.new(url.path, { 'User-Agent' => 'Mozilla/5.0 (etc...)' })
  response = Net::HTTP.start(url.Host, url.port) { |http| http.request(req) }
  case response
  when Net::HTTPSuccess     then response
  when Net::HTTPRedirection then fetch(response['location'], limit - 1)
  else
    response.error!
  end
end

print fetch('http://www.Ruby-lang.org/')
60
emboss

ここに挙げた例に基づいて、このための別のクラスを作成しました。皆さん、本当にありがとうございます。クッキー、パラメーター、例外を追加し、最終的に必要なものを得ました: https://Gist.github.com/sekrett/7dd4177d6c87cf8265cd

require 'uri'
require 'net/http'
require 'openssl'

class UrlResolver
  def self.resolve(uri_str, agent = 'curl/7.43.0', max_attempts = 10, timeout = 10)
    attempts = 0
    cookie = nil

    until attempts >= max_attempts
      attempts += 1

      url = URI.parse(uri_str)
      http = Net::HTTP.new(url.Host, url.port)
      http.open_timeout = timeout
      http.read_timeout = timeout
      path = url.path
      path = '/' if path == ''
      path += '?' + url.query unless url.query.nil?

      params = { 'User-Agent' => agent, 'Accept' => '*/*' }
      params['Cookie'] = cookie unless cookie.nil?
      request = Net::HTTP::Get.new(path, params)

      if url.instance_of?(URI::HTTPS)
        http.use_ssl = true
        http.verify_mode = OpenSSL::SSL::VERIFY_NONE
      end
      response = http.request(request)

      case response
        when Net::HTTPSuccess then
          break
        when Net::HTTPRedirection then
          location = response['Location']
          cookie = response['Set-Cookie']
          new_uri = URI.parse(location)
          uri_str = if new_uri.relative?
                      url + location
                    else
                      new_uri.to_s
                    end
        else
          raise 'Unexpected response: ' + response.inspect
      end

    end
    raise 'Too many http redirects' if attempts == max_attempts

    uri_str
    # response.body
  end
end

puts UrlResolver.resolve('http://www.Ruby-lang.org')
5
sekrett

リダイレクトするURLを指定します

url = 'http://httpbin.org/redirect-to?url=http%3A%2F%2Fhttpbin.org%2Fredirect-to%3Furl%3Dhttp%3A%2F%2Fexample.org'

A. Net::HTTP

begin
  response = Net::HTTP.get_response(URI.parse(url))
  url = response['location']
end while response.is_a?(Net::HTTPRedirection)

リダイレクトが多すぎる場合は、必ずケースを処理してください。

B. OpenURI

open(url).read

OpenURI::OpenRead#openはデフォルトでリダイレクトに従いますが、リダイレクトの数を制限しません。

3
Panic

私のために働いたリファレンスはここにあります: http://shadow-file.blogspot.co.uk/2009/03/handling-http-redirection-in-Ruby.html

ほとんどの例(ここで受け入れられている回答を含む)と比較して、ドメイン( http://example.com -/を追加する必要があります)であるURLを処理し、SSLを特に処理するため、より堅牢です、および相対URL。

もちろん、ほとんどの場合、RESTClientのようなライブラリを使用した方が良いでしょうが、低レベルの詳細が必要な場合もあります。

3
mahemoff

ここでcurb-fu gemを使用できます https://github.com/gdi/curb-f 唯一のことは、リダイレクトに従うようにするための追加のコードです。以前に以下を使用しました。それが役に立てば幸い。

require 'rubygems'
require 'curb-fu'

module CurbFu
  class Request
    module Base
      def new_meth(url_params, query_params = {})
        curb = old_meth url_params, query_params
        curb.follow_location = true
        curb
      end

      alias :old_meth :build
      alias :build :new_meth
    end
  end
end

#this should follow the redirect because we instruct
#Curb.follow_location = true
print CurbFu.get('http://<your path>/').body
1
Yesh