Performs a GET request on the specified resource_url
and all its
pages.
gc_request_all(
resource_url = "/",
base_url = gwas_rest_api_base_url,
page_size = 20L,
verbose = FALSE,
warnings = TRUE,
progress_bar = TRUE
)
A list four named elements:
The URL endpoint.
A string describing the status of the response obtained. It is "OK" if everything went OK or some other string describing the problem otherwise.
The parsed JSON as a nested list, as returned by
jsonlite::fromJSON
.
Endpoint URL. The endpoint is internally appended to the
base_url
. It should start with a forward slash (/
).
The GWAS REST API base URL (one should not need to change its default value).
Page parameter used in the URL endpoint.
Whether to be chatty.
Whether to print warnings.
Whether to show a progress bar as the paginated resources are retrieved.