Learn R Programming

⚠️There's a newer version (1.4.7) of this package.Take me there.

httr

Status

httr is superseded: only changes necessary to keep it on CRAN will be made. We recommend using httr2 instead.


The aim of httr is to provide a wrapper for the curl package, customised to the demands of modern web APIs.

Key features:

  • Functions for the most important http verbs: GET(), HEAD(), PATCH(), PUT(), DELETE() and POST().

  • Automatic connection sharing across requests to the same website (by default, curl handles are managed automatically), cookies are maintained across requests, and a up-to-date root-level SSL certificate store is used.

  • Requests return a standard reponse object that captures the http status line, headers and body, along with other useful information.

    • Response content is available with content() as a raw vector (as = "raw"), a character vector (as = "text"), or parsed into an R object (as = "parsed"), currently for html, xml, json, png and jpeg.

    • You can convert http errors into R errors with stop_for_status().

  • Config functions make it easier to modify the request in common ways: set_cookies(), add_headers(), authenticate(), use_proxy(), verbose(), timeout(), content_type(), accept(), progress().

  • Support for OAuth 1.0 and 2.0 with oauth1.0_token() and oauth2.0_token(). The demo directory has eight OAuth demos: four for 1.0 (twitter, vimeo, withings and yahoo) and four for 2.0 (facebook, github, google, linkedin). OAuth credentials are automatically cached within a project.

httr wouldn't be possible without the hard work of the authors of curl and libcurl. Thanks! httr is inspired by http libraries in other languages, such as Resty, Requests and httparty.

Installation

To get the current released version from CRAN:

install.packages("httr")

To get the current development version from github:

# install.packages("devtools")
devtools::install_github("r-lib/httr")

Code of Conduct

Please note that the httr project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Copy Link

Version

Install

install.packages('httr')

Monthly Downloads

1,080,143

Version

1.4.6

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Hadley Wickham

Last Published

May 8th, 2023

Functions in httr (1.4.6)

HEAD

Get url HEADers.
config

Set curl options.
cache_info

Compute caching information for a response.
handle

Create a handle tied to a particular host.
httr-package

httr makes http easy.
httr_dr

Diagnose common configuration problems
guess_media

Guess the media type of a path from its extension.
headers

Extract the headers from a response
hmac_sha1

HMAC SHA1
oauth_callback

The oauth callback url.
oauth_app

Create an OAuth application.
http_error

Check for an http error.
httr_options

List available options.
add_headers

Add additional headers to a request.
http_condition

Generate a classed http condition.
authenticate

Use http authentication.
parse_http_date

Parse and print http dates.
status_code

Extract status code from response.
init_oauth1.0

Retrieve OAuth 1.0 access token.
cookies

Access cookies in a response.
parse_media

Parse a media type.
content

Extract content from a request.
handle_pool

Maintain a pool of handles.
modify_url

Modify a url.
jwt_signature

Generate a JWT signature given credentials.
has_content

Does the request have content associated with it?
set_config

Set (and reset) global httr configuration.
oauth_exchanger

Walk the user through the OAuth2 dance without a local webserver.
oauth_listener

Create a webserver to listen for OAuth callback.
http_status

Give information on the status of a request.
oauth1.0_token

Generate an oauth1.0 token.
get_callback

Install or uninstall a callback function
http_type

Extract the content type of a response
oauth_service_token

Generate OAuth token for service accounts.
verbose

Give verbose output.
oauth2.0_token

Generate an oauth2.0 token.
oauth_signature

Generate oauth signature.
content_type

Set content-type and accept headers.
with_config

Execute code with configuration set.
write_disk

Control where the response body is written.
set_cookies

Set cookies.
use_proxy

Use a proxy to connect to the internet.
user_agent

Set user agent.
insensitive

Create a vector with case insensitive name matching.
parse_url

Parse and build urls according to RFC3986.
progress

Add a progress bar.
response

The response object.
stop_for_status

Take action on http error.
init_oauth2.0

Retrieve OAuth 2.0 access token.
revoke_all

Revoke all OAuth tokens in the cache.
write_function

S3 object to define response writer.
sha1_hash

SHA1 hash
sign_oauth

Sign an OAuth request
oauth_endpoint

Describe an OAuth endpoint.
timeout

Set maximum request time.
upload_file

Upload a file with POST() or PUT().
write_stream

Process output in a streaming manner.
oauth_endpoints

Popular oauth endpoints.
BROWSE

Open specified url in browser.
PUT

Send PUT request to server.
POST

POST file to a server.
PATCH

Send PATCH request to a server.
DELETE

Send a DELETE request.
RETRY

Retry a request until it succeeds.
GET

GET a url.
Token-class

OAuth token objects.
VERB

VERB a url.