RubyでJSONリクエストを送信するにはどうすればよいですか?私はJSONオブジェクトを持っていますが、私は.send
。 JavaScriptでフォームを送信する必要がありますか?
または、rubyでnet/httpクラスを使用できますか?
ヘッダーあり-コンテンツタイプ= jsonおよびbody jsonオブジェクト?
uri = URI('https://myapp.com/api/v1/resource')
req = Net::HTTP::Post.new(uri, 'Content-Type' => 'application/json')
req.body = {param1: 'some value', param2: 'some other value'}.to_json
res = Net::HTTP.start(uri.hostname, uri.port) do |http|
http.request(req)
end
require 'net/http'
require 'json'
def create_agent
uri = URI('http://api.nsa.gov:1337/agent')
http = Net::HTTP.new(uri.Host, uri.port)
req = Net::HTTP::Post.new(uri.path, 'Content-Type' => 'application/json')
req.body = {name: 'John Doe', role: 'agent'}.to_json
res = http.request(req)
puts "response #{res.body}"
rescue => e
puts "failed #{e}"
end
HTTParty を使用すると、これが少し簡単になります(ネストされたjsonなどで動作しますが、これは他の例では動作しなかったようです)。
require 'httparty'
HTTParty.post("http://localhost:3000/api/v1/users", body: {user: {email: '[email protected]', password: 'secret'}}).body
シンプルなjson POSTトムがリンクしているものよりもさらにシンプルなものを必要とする人のためのリクエスト例:
require 'net/http'
uri = URI.parse("http://www.example.com/search.json")
response = Net::HTTP.post_form(uri, {"search" => "Berlin"})
実際の例、通知 新しい展開に関するAirbrake API NetHttps経由
require 'uri'
require 'net/https'
require 'json'
class MakeHttpsRequest
def call(url, hash_json)
uri = URI.parse(url)
req = Net::HTTP::Post.new(uri.to_s)
req.body = hash_json.to_json
req['Content-Type'] = 'application/json'
# ... set more request headers
response = https(uri).request(req)
response.body
end
private
def https(uri)
Net::HTTP.new(uri.Host, uri.port).tap do |http|
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
end
end
end
project_id = 'yyyyyy'
project_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
url = "https://airbrake.io/api/v4/projects/#{project_id}/deploys?key=#{project_key}"
body_hash = {
"environment":"production",
"username":"tomas",
"repository":"https://github.com/equivalent/scrapbook2",
"revision":"live-20160905_0001",
"version":"v2.0"
}
puts MakeHttpsRequest.new.call(url, body_hash)
ノート:
authorizationヘッダーセットヘッダーreq['Authorization'] = "Token xxxxxxxxxxxx"
または http://api.rubyonrails.org/classes/ActionController/HttpAuthentication/Token.html を介して認証を行う場合
ハッシュをjsonにすばやく&dirtyに変換したい場合、jsonをリモートホストに送信してAPIをテストし、Rubyへの応答を解析します。
JSON.load `curl -H 'Content-Type:application/json' -H 'Accept:application/json' -X POST localhost:3000/simple_api -d '#{message.to_json}'`
これが言うまでもないことですが、実稼働環境では使用しないでください。ファラデーの宝石を試してみてください、ミスラヴは説得力のある議論をしています: http://mislav.uniqpath.com/2011/07/faraday-advanced-http/
「unirest」と呼ばれるこの軽量のhttp要求クライアントが好きです
gem install unirest
使用法:
response = Unirest.post "http://httpbin.org/post",
headers:{ "Accept" => "application/json" },
parameters:{ :age => 23, :foo => "bar" }
response.code # Status code
response.headers # Response headers
response.body # Parsed body
response.raw_body # Unparsed body
Net/http apiは使いにくい場合があります。
require "net/http"
uri = URI.parse(uri)
Net::HTTP.new(uri.Host, uri.port).start do |client|
request = Net::HTTP::Post.new(uri.path)
request.body = "{}"
request["Content-Type"] = "application/json"
client.request(request)
end
これは、Ruby 2.4 JSONオブジェクトと書き出された応答本文を含むHTTPS Postで動作します。
require 'net/http' #net/https does not have to be required anymore
require 'json'
require 'uri'
uri = URI('https://your.secure-url.com')
Net::HTTP.start(uri.Host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
request = Net::HTTP::Post.new(uri, 'Content-Type' => 'application/json')
request.body = {parameter: 'value'}.to_json
response = http.request request # Net::HTTPResponse object
puts "response #{response.body}"
end
data = {a: {b: [1, 2]}}.to_json
uri = URI 'https://myapp.com/api/v1/resource'
https = Net::HTTP.new uri.Host, uri.port
https.use_ssl = true
https.post2 uri.path, data, 'Content-Type' => 'application/json'