Ruby 网络请求

Posted 阳君

tags:

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

Ruby 访问服务器时,也可以通过 get 或 post 请求。

1 Get 请求

require 'net/https'
require 'uri'
require 'json'

params = 
params["username"] = 'yangjun'

# 发送
base_path = 'http://www.yjcocoa.com/prod_feige_service'
uri = URI.parse("#base_path/feige")
res = Net::HTTP.post_form(uri, params)

resbody = JSON.parse(res.body)
puts resbody

2 Post 请求

Ruby post 请求我们主要通过 json 交互。

require 'net/https'
require 'uri'
require 'json'

params = 
params["username"] = 'yangjun'

uri = URI.parse("#base_path/feige")
req = Net::HTTP::Post.new(uri.path, 'Content-Type' => 'application/json')
req.body = params.to_json

res = Net::HTTP.new(uri.host, uri.port).start|http|
    http.request(req)


resbody = JSON.parse(res.body)
puts resbody

 


Appendix

Revision History

时间描述
2017-11-9博文完成

CSDN:http://blog.csdn.net/y550918116j

GitHub:https://github.com/937447974

以上是关于Ruby 网络请求的主要内容,如果未能解决你的问题,请参考以下文章

ruby 教程之网络请求数据后导出 excel

ruby 教程之网络请求数据后导出 excel

ruby 教程之网络请求数据后导出 excel

如何在 Ruby 上执行这种 CURL 请求

Ruby用百度搜索爬虫

ruby on rails 总结