我有一个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
任何建议都将不胜感激!
答案 0 :(得分:57)
要关注重定向,您可以执行以下操作(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/')
答案 1 :(得分:6)
我根据这里给出的例子为此写了另一个课,非常感谢大家。我添加了cookie,参数和异常,最终得到了我需要的东西: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')
答案 2 :(得分:3)
对我有用的参考资料如下:http://shadow-file.blogspot.co.uk/2009/03/handling-http-redirection-in-ruby.html
与大多数示例(包括此处接受的答案)相比,它更强大,因为它处理的URL只是一个域(http://example.com - 需要添加/),具体处理SSL,以及相对URL。
当然,在大多数情况下,最好使用像RESTClient这样的库,但有时需要低级细节。
答案 3 :(得分:3)
给出重定向的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
默认情况下遵循重定向,但是它不限制重定向的次数。
答案 4 :(得分:1)
也许你可以在这里使用curb-fu gem https://github.com/gdi/curb-fu唯一的一些额外代码让它遵循重定向。我之前使用过以下内容。希望它有所帮助。
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
答案 5 :(得分:0)
如果您不需要在每次重定向时都关心细节,则可以使用库Mechanize
require 'mechanize'
agent = Mechanize.new
begin
response = @agent.get(url)
rescue Mechanize::ResponseCodeError
// response codes other than 200, 301, or 302
rescue Timeout::Error
rescue Mechanize::RedirectLimitReachedError
rescue StandardError
end
它将返回目标页面。 或者,您可以通过以下方式关闭重定向:
agent.redirect_ok = false
或者您也可以根据要求更改一些设置
agent.user_agent = "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Mobile Safari/537.36"