Skip to content

httr

966 9 80 MIT
1.4.4 (4 May 2022) May 06 2012 892.5 thousand (month)

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.

Example Use


library(httr)

# GET requests:
resp <- GET("http://httpbin.org/get")
status_code(resp)  # status code
headers(resp)  # headers
str(content(resp))  # body

# POST requests: 
# Form encoded
resp <- POST(url, body = body, encode = "form")
# Multipart encoded
resp <- POST(url, body = body, encode = "multipart")
# JSON encoded
resp <- POST(url, body = body, encode = "json")

# setting cookies:
resp <- GET("http://httpbin.org/cookies", set_cookies("MeWant" = "cookies"))
content(r)$cookies  # get response cookies

Alternatives / Similar


1,387 1.0.3 (1 year, 4 months ago) Nov 22 2014 compare
94 1.3 (1 year, 3 months ago) Nov 09 2016 compare
145 2.2.4 (2 years ago) Dec 22 2019 compare

Other Languages

49,097 2.28.2 (a month ago) Feb 14 2011 compare
8,082 3.3.0 (a month ago) Dec 28 2012 compare
98,234 1.2.2 (a month ago) Aug 29 2014 compare
got
12,497 12.5.3 (2 months ago) Mar 27 2014 compare
13,292 3.8.4 (11 days ago) Jul 26 2019 compare
16,224 8.0.6 (2 months ago) Aug 22 2011 compare
1,567 3.2.0 (3 months ago) Dec 11 2011 compare
10,106 0.23.3 (a month ago) Jul 26 2019 compare
5,444 2.7.4 (a month ago) Dec 19 2009 compare
697 2.8.3 (6 years ago) Jul 25 2009 compare
1,122 0.99.0 (20 days ago) Oct 31 2009 compare
5,644 0.21.0 (a month ago) Jul 25 2009 compare
949 7.45.2 (2 months ago) Feb 25 2003 compare
3,989 1.4.0 (2 years ago) Oct 06 2009 compare
22,372 7.5.0 (5 months ago) Nov 14 2011 compare
383 18.1.0 (6 months ago) Aug 06 2011 compare
1,210 1.1.7 (2 years ago) Oct 25 2009 compare
872 0.11.0 (2 years ago) Sep 25 2013 compare
1,687 v6.2.6 (24 days ago) Apr 28 2019 compare
552 22.2.0 (1 year, 15 days ago) Dec 28 2012 compare
req
3,073 v3.32.1 (2 days ago) Aug 21 2022 compare
7,360 v2.7.0 (1 year, 3 months ago) Jan 25 2018 compare
505 1.1.4 (3 years ago) Apr 20 2010 compare
3,501 v2.0.5 (4 months ago) Oct 06 2013 compare
1,897 1.2.1 (10 months ago) Nov 11 2011 compare
1,733 0.3.2 (3 years ago) Apr 14 2012 compare
2,907 0.12.0 (5 years ago) Mar 20 2015 compare