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 | 博文完成 |
Copyright
CSDN:http://blog.csdn.net/y550918116j
GitHub:https://github.com/937447974
以上是关于Ruby 网络请求的主要内容,如果未能解决你的问题,请参考以下文章