httr (version 0.1.1)

DELETE: Send a delete request.

Description

Send a delete request.

Usage

DELETE(url = NULL, config = list(), ..., handle = NULL)

Arguments

url
the url of the page to retrieve
config
Additional configuration settings such as http authentication (authenticate), additional headers (add_headers), cookies (
...
Further parameters, such as query, path, etc, passed on to modify_url. These parameters must be named.
handle
The handle to use with this request. If not supplied, will be retrieved and reused from the handle_pool based on the scheme, hostname and port of the url. By default httr requests to

See Also

Other http methods: BROWSE, GET, HEAD

Examples

Run this code
b <- new_bin()
DELETE(b)

DELETE("http://httpbin.org/delete")
POST("http://httpbin.org/delete")

Run the code above in your browser using DataLab