plumber
plumber copied to clipboard
Turn your R code into a web API.
Setting the `Connection` header for CORS preflight requests does not work with Plumber ``` #* @filter cors cors
### Example application *or* steps to reproduce the problem Every Plumber API sent an incorrect method to a valid route (e.g. `PATCH /route` where only `GET /route` is supported) is...
The plumber documentation on specifying input parameters is limited (see https://www.rplumber.io/articles/annotations.html#more-details-on-param). Take the following example: ``` #* @param double:dbl #* @get /test function(double = 0) { class(double) } ``` When...
When defining a parser using `register_parser`, it would be helpful to have access to `res`, or otherwise have a way to set the response status code. I find it useful...
I've got a project and I updated to the latest plumber version. I updated the `plumber` calls to `Plumber`: ``` Warning: `plumber` is deprecated as of plumber 1.0.0. Please use...
cc @krlmlr - [x] Given a full kitchen sink plumber file, be able to produce open api yaml file - [ ] produce a stub plumber file given the open...
There are several places where examples can be updated to reflect the latest release. For example, the "hello world" example currently returns the following warning: ``` Warning message: Plumber tag...
I've changed my implementation from annotated routes to programatically defined one (see https://github.com/r-lib/debugme/issues/30). Can I somehow manually provide the (parameters) information for the Swagger UI generation?
https://community.rstudio.com/t/adding-endpoint-documentation-from-programmatic-usage-in-plumber/71271 > As a bonus, how can I add the global API documentation when using pr? > > ``` > #* @apiTitle My API > #* @apiVersion 0.0.1 > #*...
I'm using the development version of plumber due to the newly implemented multipart/form-data file upload. I'd like to be able to send an arbitrary number of files to the server....