ahmadnassri/httpsnippet

View on GitHub
src/targets/r/httr/fixtures/text-plain.r

Summary

Maintainability
Test Coverage
library(httr)

url <- "http://mockbin.com/har"

payload <- "Hello World"

encode <- "raw"

response <- VERB("POST", url, body = payload, content_type("text/plain"), encode = encode)

content(response, "text")