如您所知,一些验证码是使用用户会话生成的,我必须以某种方式将此图像保存到计算机,以测试我们的应用程序,但是如何选择,以及选择什么更好?
例如在 http::get 我有这样的代码,带有 cookie:
http = Net::HTTP.new('***', 443)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
path = '****'
# GET request -> so the host can set his cookies
resp, data = http.get(path)
body_text = resp.body
#puts "Body = #{body_text}"
cookie = resp.response['set-cookie'].split('; ')[0]
@captcha_url = (/BotDetectCaptcha.ashx?get=image&c=***;t=(.*)" \/>/.match body_text)
# POST request -> logging in
puts "captcha_url = #{@captcha_url}"
data = 'BotDetectCaptcha.ashx?get=image&c=****&t=#{@captcha_url}'
headers = {
'Cookie' => cookie,
'Referer' => '****',
'Content-Type' => 'image-jpeg'
}
resp, data = http.post(path, data, headers)
所以,也许,我有我需要的形象,但是!我怎样才能保存它?所有 google 的文章都说我必须使用 open-uri,但是当我还必须使用 session 时怎么办?也许我可以用 ruby 的 http 类以某种方式做到这一点?
那么如何从加载的页面或通过 url 下载图像?