R/web-05.R

Defines functions web_05

Documented in web_05

#' POST without user_agent
#'
#' @export
web_05 <- function() {

  httr::POST(
    "https://httpbin.org/post",
    body = list(
      some = "thing"
    )
  ) -> res

  "web_05"

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