GET | R Documentation |
GET a url.
GET(url = NULL, config = list(), ..., handle = NULL)
url |
the url of the page to retrieve |
config |
Additional configuration settings such as http
authentication ( |
... |
Further named parameters, such as |
handle |
The handle to use with this request. If not
supplied, will be retrieved and reused from the |
A response()
object.
The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI. If the Request-URI refers to a data-producing process, it is the produced data which shall be returned as the entity in the response and not the source text of the process, unless that text happens to be the output of the process.
The semantics of the GET method change to a "conditional GET" if the request message includes an If-Modified-Since, If-Unmodified-Since, If-Match, If-None-Match, or If-Range header field. A conditional GET method requests that the entity be transferred only under the circumstances described by the conditional header field(s). The conditional GET method is intended to reduce unnecessary network usage by allowing cached entities to be refreshed without requiring multiple requests or transferring data already held by the client.
The semantics of the GET method change to a "partial GET" if the request message includes a Range header field. A partial GET requests that only part of the entity be transferred, as described in https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35 The partial GET method is intended to reduce unnecessary network usage by allowing partially-retrieved entities to be completed without transferring data already held by the client.
Other http methods:
BROWSE()
,
DELETE()
,
HEAD()
,
PATCH()
,
POST()
,
PUT()
,
VERB()
GET("http://google.com/")
## Not run:
GET("http://google.com/", path = "search")
GET("http://google.com/", path = "search", query = list(q = "ham"))
## End(Not run)
# See what GET is doing with httpbin.org
## Not run:
url <- "http://httpbin.org/get"
GET(url)
GET(url, add_headers(a = 1, b = 2))
GET(url, set_cookies(a = 1, b = 2))
GET(url, add_headers(a = 1, b = 2), set_cookies(a = 1, b = 2))
GET(url, authenticate("username", "password"))
GET(url, verbose())
## End(Not run)
# You might want to manually specify the handle so you can have multiple
# independent logins to the same website.
## Not run:
google <- handle("http://google.com")
GET(handle = google, path = "/")
GET(handle = google, path = "search")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.