add_headers(..., .headers = character())
""
.accept
and content_type
for
convenience functions for setting accept and content-type headers.Other config: authenticate
;
config
; set_cookies
;
timeout
; use_proxy
;
user_agent
; verbose
add_headers(a = 1, b = 2)
add_headers(.headers = c(a = "1", b = "2"))
GET("http://httpbin.org/headers")
# Add arbitrary headers
GET("http://httpbin.org/headers",
add_headers(version = version$version.string))
# Override default headers with empty strings
GET("http://httpbin.org/headers", add_headers(Accept = ""))
Run the code above in your browser using DataLab