class Net::HTTP::Post
Class for representing HTTP method POST:
require 'net/http' uri = URI('http://example.com') hostname = uri.hostname # => "example.com" uri.path = '/posts' req = Net::HTTP::Post.new(uri) # => #<Net::HTTP::Post POST> req.body = '{"title": "foo","body": "bar","userId": 1}' req.content_type = 'application/json' res = Net::HTTP.start(hostname) do |http| http.request(req) end
Properties:
- 
Request body: yes.
 - 
Response body: yes.
 - 
Safe: no.
 - 
Idempotent: no.
 - 
Cacheable: yes.
 
Related:
- 
Net::HTTP.post: sendsPOSTrequest, returns response object. - 
Net::HTTP#post: sendsPOSTrequest, returns response object. 
Constants
- METHOD
 - REQUEST_HAS_BODY
 - RESPONSE_HAS_BODY