= private = protected
post(path, body = '', headers = {})
Executes a POST request. Used to create new resources.
# File activeresource/lib/active_resource/connection.rb, line 96 def post(path, body = '', headers = {}) with_auth { request(:post, path, body.to_s, build_request_headers(headers, :post, self.site.merge(path))) } end