(This isn't really a http verb, but it seems to follow the same format).
BROWSE(url = NULL, config = list(), ..., handle = NULL)the url of the page to retrieve
All configuration options are ignored because the request is handled by the browser, not RCurl.
Further named parameters, such as query, path, etc,
passed on to modify_url(). Unnamed parameters will be combined
with config().
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 the same scheme/host/port combo. This substantially reduces
connection time, and ensures that cookies are maintained over multiple
requests to the same host. See handle_pool() for more
details.
A response() object.
Only works in interactive sessions.
BROWSE("http://google.com")
#> Please point your browser to the following url:
#> http://google.com
BROWSE("http://had.co.nz")
#> Please point your browser to the following url:
#> http://had.co.nz