BROWSE {httr} | R Documentation |
Open specified url in browser.
Description
(This isn't really a http verb, but it seems to follow the same format).
Usage
BROWSE(url = NULL, config = list(), ..., handle = NULL)
Arguments
url |
the url of the page to retrieve |
config |
All configuration options are ignored because the request is handled by the browser, not RCurl. |
... |
Further named parameters, such as |
handle |
The handle to use with this request. If not
supplied, will be retrieved and reused from the |
Details
Only works in interactive sessions.
Value
A response()
object.
See Also
Other http methods:
DELETE()
,
GET()
,
HEAD()
,
PATCH()
,
POST()
,
PUT()
,
VERB()
Examples
BROWSE("http://google.com")
BROWSE("http://had.co.nz")