R/web-04.R

Defines functions web_04

Documented in web_04

#' POST with user_agent
#'
#' @export
web_04 <- function() {

  httr::POST(
    "https://httpbin.org/post",
    httr::user_agent("#rstats testevil https://github.com/hrbrmstr/testevil"),
    body = list(
      some = "thing"
    )
  ) -> res

  "web_04"

}
ropenscilabs/testevil documentation built on May 11, 2022, 9:12 a.m.