- When present, combine operation parameters and api path-level parameters, where the former take precedence (@almahmoud, #23)
get_api
now has anext
argument for API urls that are missing a file extension; this ensures that the file is properly parsed (@almahmoud, #26).
config
argument inget_api
is passed along to theGET
call for non-public APIs that require a token (@almahmoud, #26).get_api
handles both URLs and files (eitherjson
oryml
)
- when functions that have signatures like
fun(x, ..., .__body__ = list(y))
, wherex
is a argument for the 'URL' of the RESTful interface, andy
is an argument for the 'BODY' of POST and similar requests. The...
provide backward compatibility, and is used to populate elements of.__body__
; the full interface is required when URL and BODY have identically named arguments (@mtmorgan)
- allow positional matching for
.body
arguments (@mtmorgan) - when
.body
consists of 1 argument, it is represented as an unnamed set (@mtmorgan) - support argument names duplicated in
.body
(@mtmorgan)
- Maintainer change.
- Resolve check NOTES (@LiNk-NY, #24)
- Allow multiple
httr::accept
headers fromop_def$produces
(@almahmoud, #22) - Work with
operation$parameters
that have zero length (@seandavi, #20)