Class: HTTP::Post

Inherits:
Request show all
Defined in:
lib/http_client/mri/methods.rb,
lib/http_client/jruby/methods.rb

Instance Attribute Summary

Attributes inherited from Request

#body, #encoding

Instance Method Summary collapse

Methods inherited from Request

#add_headers, #basic_auth, #content_type=, #execute_native_request, #initialize, #make_native_request

Constructor Details

This class inherits a constructor from HTTP::Request

Instance Method Details

#create_native_requestObject



56
57
58
59
60
# File 'lib/http_client/jruby/methods.rb', line 56

def create_native_request
  post = HttpPost.new(create_uri)
  post.entity = UrlEncodedFormEntity.new(@query_params, encoding)
  post
end

#create_requestObject



64
65
66
67
68
69
# File 'lib/http_client/mri/methods.rb', line 64

def create_request
  host, port, path, query = parse_uri
  post = Net::HTTP::Post.new(path)
  post.set_form_data(@params)
  [host, port, post]
end