rapiclient icon indicating copy to clipboard operation
rapiclient copied to clipboard

Dynamic Open API (Swagger) Client for R

Results 13 rapiclient issues
Sort by recently updated
recently updated
newest added

Sometimes API endpoints are defined such that they have fields contained in the path that need to be substituted for prior to issuing the request. For example: ``` r library(rapiclient)...

For the kubernetes api (https://gist.githubusercontent.com/almahmoud/19c45f0debf54abc1cb8eb779a2e823b/raw/90a18dc5c2ead172767b0013f12902ffc39fe16d/swagger.json) there are sets of parameters per operation, but also parameters that should be applied for all operations at a certain API path. This PR makes...

There is an issue in the `get_api` function when the API requires specific headers to be set in order to view the page content. An example is when the API...

The openAPI 3 spec differs from swagger (openAPI v2). - https://swagger.io/blog/news/whats-new-in-openapi-3-0/ - https://swagger.io/blog/api-strategy/difference-between-swagger-and-openapi/ I wanted to open this issue to discuss if/how rapiclient could/should support openAPI v3.

I'm looking at some YAML at the moment which has a parameter defined as a `$ref`. This causes a problem at call time of: ``` Error in build_op_url(api, api$schemes[1], api$host,...

I've been using rapiclient against some internal authenticated REST api's recently. These APIs have necessitated a few small changes: - allow the JSON to have `openapi` instead of `swagger` (was...

Hi, I have discovered a bug where when both method specific parameters as well as parameters for the entire path exists, only the method specific ones are generated in the...

Not sure wether this is the right location to ask the question. So if not, excuse me. I'm trying to connect to an API which requires authentication with a key...

Hello, I'm attempting to use rapiclient with an API that includes a file upload endpoint. The endpoint expects multipart/form-data, but rapiclient is specifying application/json. Is there some way to change...

I love the autogeneration aspects of `rapiclient`. I'd like to use them to dynamically build out the API but specify more than one type of handler. Is this a use...