Ruby——httparty使用代理

Posted kuaidaili

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ruby——httparty使用代理相关的知识,希望对你有一定的参考价值。

环境配置:

安装httparty库

gem install httparty

代码样例

使用代理

require "httparty"  # 引入httparty模块
require 'zlib'
require 'stringio'

# 代理服务器ip和端口
proxy_ip = '47.115.5.19'
proxy_port = 16816

# 要访问的目标网页, 以京东首页为例
page_url = 'https://dev.kuaidaili.com/testproxy'

# 设置headers
headers = {
    "User-Agent" => "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (Khtml, like Gecko) Version/5.1 Safari/534.50",
    "Accept-Encoding" => "gzip",
}

# 设置代理
options = {
    :headers => headers, 
    :http_proxyaddr => proxy_ip, 
    :http_proxyport => proxy_port,
}

# 发起请求
res = HTTParty.get(page_url, options)

# 输出状态码
puts "status code: #{res.code}"

# 输出响应体
if  res.code.to_i != 200 then
    puts "page content: #{res.body}"
else
    gz = Zlib::GzipReader.new(StringIO.new(res.body.to_s))
    puts "page content: #{gz.read}" 
end

运行下,看看结果。
技术图片

进阶学习

以上是关于Ruby——httparty使用代理的主要内容,如果未能解决你的问题,请参考以下文章

Ruby HTTParty - 获取重定向的 URL

ruby HTTParty

使用 Rails 和 HTTParty 将 JSON 发布到 API

Ruby救援语法错误

使用 HTTParty 发送多个文件

Twitter 搜索 API:通过 HTTParty “未经授权”,但通过 Curl 成功