Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v3.2.13) is shown here.
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