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