upload_file
From httr v1.4.2
by Hadley Wickham
Upload a file with POST()
or PUT()
.
Usage
upload_file(path, type = NULL)
Arguments
- path
path to file
- type
mime type of path. If not supplied, will be guess by
mime::guess_type()
when needed.
Examples
# NOT RUN {
citation <- upload_file(system.file("CITATION"))
POST("http://httpbin.org/post", body = citation)
POST("http://httpbin.org/post", body = list(y = citation))
# }
Community examples
Looks like there are no examples yet.