Closed JosiahParry closed 8 months ago
This PR adds two new arguments to arc_base_req(): path and query this allows you to add query parameters and additional paths while creating the base request.
arc_base_req()
path
query
For example:
arcgisutils::arc_base_req( "google.com", path = c("a", "b", "c"), query = list(f = "json") ) #> <httr2_request> #> GET /google.com/a/b/c?f=json #> Body: empty #> Options: #> • useragent: 'arcgisutils v0.2.0.9000'
This PR adds two new arguments to
arc_base_req()
:path
andquery
this allows you to add query parameters and additional paths while creating the base request.For example: