ฉันจะส่งคำขอ JSON ใน Ruby ได้อย่างไร ฉันมีวัตถุ JSON .send
แต่ฉันไม่คิดว่าฉันจะทำ จาวาสคริปต์ต้องส่งแบบฟอร์มหรือไม่
หรือใช้คลาส net / http ใน Ruby ได้หรือไม่?
ด้วย header - content type = json และ body วัตถุ json?
ฉันจะส่งคำขอ JSON ใน Ruby ได้อย่างไร ฉันมีวัตถุ JSON .send
แต่ฉันไม่คิดว่าฉันจะทำ จาวาสคริปต์ต้องส่งแบบฟอร์มหรือไม่
หรือใช้คลาส net / http ใน Ruby ได้หรือไม่?
ด้วย header - content type = 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
http.request(req).read_body
เพื่ออ่านเนื้อหาตอบสนอง เยี่ยมมาก!
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: 'user1@example.com', password: 'secret'}}).body
ตัวอย่างชีวิตจริงแจ้ง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 header set header req['Authorization'] = "Token xxxxxxxxxxxx"
หรือhttp://api.rubyonrails.org/classes/ActionController/HttpAuthentication/Token.html
ตัวอย่างคำขอ json POST ง่ายๆสำหรับผู้ที่ต้องการมันง่ายกว่าที่ Tom เชื่อมโยงไป
require 'net/http'
uri = URI.parse("http://www.example.com/search.json")
response = Net::HTTP.post_form(uri, {"search" => "Berlin"})
มันเป็นปี 2020 - ไม่มีใครควรใช้Net::HTTP
อีกต่อไปและคำตอบทั้งหมดดูเหมือนจะพูดอย่างนั้นให้ใช้อัญมณีระดับสูงเช่น Faraday - Github
ที่กล่าวว่าสิ่งที่ฉันชอบทำคือ wrapper รอบ ๆ การเรียก HTTP api สิ่งที่เรียกว่า like
rv = Transporter::FaradayHttp[url, options]
เนื่องจากสิ่งนี้ทำให้ฉันสามารถโทร HTTP ปลอมโดยไม่มีการอ้างอิงเพิ่มเติมเช่น:
if InfoSig.env?(:test) && !(url.to_s =~ /localhost/)
response_body = FakerForTests[url: url, options: options]
else
conn = Faraday::Connection.new url, connection_options
ที่ faker มีลักษณะเช่นนี้
ฉันรู้ว่ามีเฟรมเวิร์กการเยาะเย้ย / การตัด HTTP แต่อย่างน้อยเมื่อฉันค้นคว้าครั้งสุดท้ายพวกเขาไม่อนุญาตให้ฉันตรวจสอบคำขออย่างมีประสิทธิภาพและเป็นเพียง HTTP เท่านั้นไม่ใช่ตัวอย่างสำหรับการแลกเปลี่ยน TCP ดิบระบบนี้ช่วยให้ฉันมี กรอบงานที่เป็นหนึ่งเดียวสำหรับการสื่อสาร API ทั้งหมด
สมมติว่าคุณต้องการแปลงแฮชเป็น json อย่างรวดเร็วและสกปรกส่ง json ไปยังโฮสต์ระยะไกลเพื่อทดสอบ API และแยกวิเคราะห์การตอบสนองต่อทับทิมนี่อาจเป็นวิธีที่เร็วที่สุดโดยไม่ต้องเกี่ยวข้องกับอัญมณีเพิ่มเติม:
JSON.load `curl -H 'Content-Type:application/json' -H 'Accept:application/json' -X POST localhost:3000/simple_api -d '#{message.to_json}'`
หวังว่าสิ่งนี้จะเป็นไปโดยไม่พูด แต่อย่าใช้สิ่งนี้ในการผลิต
Net::HTTP
คำยืนยันว่า 'ไม่มีใครควรใช้'
nobody should be using Net::HTTP any more
@bbozo
สิ่งนี้ใช้ได้กับ Ruby 2.4 HTTPS Post พร้อมออบเจ็กต์ JSON และเนื้อหาการตอบสนองที่เขียนออกมา
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
ฉันชอบไคลเอนต์คำขอ http น้ำหนักเบาที่เรียกว่า `` unirest ''
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
Net::HTTP.start(uri.host, uri.port, :use_ssl => true) do |client|
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'
req = Net::HTTP::Post.new(uri.path, initheader = {'Content-Type' =>'application/json'})