require 'net/http'
require 'rubygems'
require 'json'
url = URI.parse('http://www.xyxx/abc/pqr')
resp = Net::HTTP.get_response(url) # get_response takes an URI object
data = resp.body
puts data
这是我在ruby中的代码,resp.data以xml格式提供数据。
默认情况下,api返回xml数据,如果header content-type是application / json,则返回json。
但我想要json形式的数据。为此我必须设置header ['content-type'] ='application / json'。
但我不知道,如何使用get_response方法设置标头。获取json数据。
答案 0 :(得分:10)
def post_test
require 'net/http'
require 'json'
@host = '23.23.xxx.xx'
@port = '8080'
@path = "/restxxx/abc/xyz"
request = Net::HTTP::Get.new(@path, initheader = {'Content-Type' =>'application/json'})
response = Net::HTTP.new(@host, @port).start {|http| http.request(request) }
puts "Response #{response.code} #{response.message}: #{response.body}"
end
答案 1 :(得分:4)
使用实例方法Net::HTTP#get
修改GET请求的标头。
require 'net/http'
url = URI.parse('http://www.xyxx/abc/pqr')
http = Net::HTTP.new url.host
resp = http.get("#{url.path}?#{url.query.to_s}", {'Content-Type' => 'application/json'})
data = resp.body
puts data
答案 2 :(得分:3)
你可以这样做:
uri = URI.parse('http://www.xyxx/abc/pqr')
req = Net::HTTP::Get.new(uri.path, 'Content-Type' => 'application/json')
res = Net::HTTP.new(uri.host, uri.port).request(req)