开发者

Sending HTTP request using ruby on rails

开发者 https://www.devze.com 2023-03-15 05:24 出处:网络
I\'m new to ruby on rails and trying to test if I could do something like the below from my controller:

I'm new to ruby on rails and trying to test if I could do something like the below from my controller:

curl -v -H "Content-T开发者_如何学Pythonype: application/json" -X GET -d "{bbrequest:BBTest reqid:44  data:{name: "test"}}" http://localhost:8099

And what is the best practice to send JSON in your HTTP requests?


You could do something like this:

def post_test
  require 'net/http'
  require 'json'

  @host = 'localhost'
  @port = '8099'

  @path = "/posts"

  @body ={
    "bbrequest" => "BBTest",
    "reqid" => "44",
    "data" => {"name" => "test"}
  }.to_json

  request = Net::HTTP::Post.new(@path, initheader = {'Content-Type' =>'application/json'})
  request.body = @body
  response = Net::HTTP.new(@host, @port).start {|http| http.request(request) }
  puts "Response #{response.code} #{response.message}: #{response.body}"
end

Look up Net::HTTP for more information.

0

精彩评论

暂无评论...
验证码 换一张
取 消