├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── issue_template.md ├── SUPPORT.md ├── ai │ └── issues.json ├── scripts │ └── fetch-issues.R └── workflows │ ├── R-CMD-check.yaml │ ├── fetch-issues.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── aaa-shared.R ├── call_api.R ├── iterate_with_json_cursor.R ├── nectar-package.R ├── req_auth_api_key.R ├── req_init.R ├── req_modify.R ├── req_pagination_policy.R ├── req_perform_opinionated.R ├── req_pkg_user_agent.R ├── req_policy.R ├── req_prepare.R ├── req_tidy_policy.R ├── resp_body_auto.R ├── resp_body_csv.R ├── resp_body_separate.R ├── resp_parse.R ├── resp_tidy.R ├── resp_tidy_json.R ├── resp_tidy_unknown.R ├── stabilize.R ├── utils-conditions.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── man ├── call_api.Rd ├── choose_pagination_fn.Rd ├── compact_nested_list.Rd ├── do_if_fn_defined.Rd ├── dot-compact_nested_list_impl.Rd ├── dot-do_if_args_defined.Rd ├── dot-get_pkg_version.Rd ├── dot-httr2_default_user_agent.Rd ├── dot-lib_user_agent_append.Rd ├── dot-lib_user_agent_string.Rd ├── dot-nectar_abort.Rd ├── dot-nectar_user_agent_append.Rd ├── dot-next_cursor_finder.Rd ├── dot-pkg_user_agent_append.Rd ├── dot-req_apply_retry_default.Rd ├── dot-req_body_auto.Rd ├── dot-req_method_apply.Rd ├── dot-req_path_append.Rd ├── dot-req_policy.Rd ├── dot-req_query_flatten.Rd ├── dot-resp_body_auto_other.Rd ├── dot-shared-params.Rd ├── dot-shared-request.Rd ├── dot-user_agent_remove.Rd ├── figures │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ ├── logo.svg │ ├── logo_gh.png │ └── logo_gh.svg ├── get_pkg_name.Rd ├── iterate_with_json_cursor.Rd ├── nectar-package.Rd ├── req_auth_api_key.Rd ├── req_init.Rd ├── req_modify.Rd ├── req_pagination_policy.Rd ├── req_perform_opinionated.Rd ├── req_pkg_user_agent.Rd ├── req_prepare.Rd ├── req_tidy_policy.Rd ├── resp_body_auto.Rd ├── resp_body_csv.Rd ├── resp_body_separate.Rd ├── resp_parse.Rd ├── resp_tidy.Rd ├── resp_tidy_json.Rd ├── resp_tidy_unknown.Rd ├── stabilize_string.Rd ├── url_normalize.Rd └── url_path_append.Rd ├── nectar.Rproj ├── principles.md └── tests ├── testthat.R └── testthat ├── _snaps ├── req_prepare.md ├── resp_parse.md └── resp_tidy.md ├── fixtures ├── img-test.png └── raw_resps.rds ├── test-call_api.R ├── test-iterate_with_json_cursor.R ├── test-req_auth_api_key.R ├── test-req_body.R ├── test-req_pagination_policy.R ├── test-req_perform_opinionated.R ├── test-req_pkg_user_agent.R ├── test-req_policy.R ├── test-req_prepare.R ├── test-req_tidy_policy.R ├── test-resp_body_auto.R ├── test-resp_body_csv.R ├── test-resp_body_separate.R ├── test-resp_parse.R ├── test-resp_tidy.R ├── test-resp_tidy_json.R ├── test-resp_tidy_unknown.R ├── test-stabilize.R └── test-utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/ai/issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/ai/issues.json -------------------------------------------------------------------------------- /.github/scripts/fetch-issues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/scripts/fetch-issues.R -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/fetch-issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/workflows/fetch-issues.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: nectar authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/aaa-shared.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/aaa-shared.R -------------------------------------------------------------------------------- /R/call_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/call_api.R -------------------------------------------------------------------------------- /R/iterate_with_json_cursor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/iterate_with_json_cursor.R -------------------------------------------------------------------------------- /R/nectar-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/nectar-package.R -------------------------------------------------------------------------------- /R/req_auth_api_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_auth_api_key.R -------------------------------------------------------------------------------- /R/req_init.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_init.R -------------------------------------------------------------------------------- /R/req_modify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_modify.R -------------------------------------------------------------------------------- /R/req_pagination_policy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_pagination_policy.R -------------------------------------------------------------------------------- /R/req_perform_opinionated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_perform_opinionated.R -------------------------------------------------------------------------------- /R/req_pkg_user_agent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_pkg_user_agent.R -------------------------------------------------------------------------------- /R/req_policy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_policy.R -------------------------------------------------------------------------------- /R/req_prepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_prepare.R -------------------------------------------------------------------------------- /R/req_tidy_policy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/req_tidy_policy.R -------------------------------------------------------------------------------- /R/resp_body_auto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_body_auto.R -------------------------------------------------------------------------------- /R/resp_body_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_body_csv.R -------------------------------------------------------------------------------- /R/resp_body_separate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_body_separate.R -------------------------------------------------------------------------------- /R/resp_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_parse.R -------------------------------------------------------------------------------- /R/resp_tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_tidy.R -------------------------------------------------------------------------------- /R/resp_tidy_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_tidy_json.R -------------------------------------------------------------------------------- /R/resp_tidy_unknown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/resp_tidy_unknown.R -------------------------------------------------------------------------------- /R/stabilize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/stabilize.R -------------------------------------------------------------------------------- /R/utils-conditions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/utils-conditions.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: https://nectar.api2r.org 2 | template: 3 | bootstrap: 5 4 | 5 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/call_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/call_api.Rd -------------------------------------------------------------------------------- /man/choose_pagination_fn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/choose_pagination_fn.Rd -------------------------------------------------------------------------------- /man/compact_nested_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/compact_nested_list.Rd -------------------------------------------------------------------------------- /man/do_if_fn_defined.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/do_if_fn_defined.Rd -------------------------------------------------------------------------------- /man/dot-compact_nested_list_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-compact_nested_list_impl.Rd -------------------------------------------------------------------------------- /man/dot-do_if_args_defined.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-do_if_args_defined.Rd -------------------------------------------------------------------------------- /man/dot-get_pkg_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-get_pkg_version.Rd -------------------------------------------------------------------------------- /man/dot-httr2_default_user_agent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-httr2_default_user_agent.Rd -------------------------------------------------------------------------------- /man/dot-lib_user_agent_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-lib_user_agent_append.Rd -------------------------------------------------------------------------------- /man/dot-lib_user_agent_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-lib_user_agent_string.Rd -------------------------------------------------------------------------------- /man/dot-nectar_abort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-nectar_abort.Rd -------------------------------------------------------------------------------- /man/dot-nectar_user_agent_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-nectar_user_agent_append.Rd -------------------------------------------------------------------------------- /man/dot-next_cursor_finder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-next_cursor_finder.Rd -------------------------------------------------------------------------------- /man/dot-pkg_user_agent_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-pkg_user_agent_append.Rd -------------------------------------------------------------------------------- /man/dot-req_apply_retry_default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-req_apply_retry_default.Rd -------------------------------------------------------------------------------- /man/dot-req_body_auto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-req_body_auto.Rd -------------------------------------------------------------------------------- /man/dot-req_method_apply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-req_method_apply.Rd -------------------------------------------------------------------------------- /man/dot-req_path_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-req_path_append.Rd -------------------------------------------------------------------------------- /man/dot-req_policy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-req_policy.Rd -------------------------------------------------------------------------------- /man/dot-req_query_flatten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-req_query_flatten.Rd -------------------------------------------------------------------------------- /man/dot-resp_body_auto_other.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-resp_body_auto_other.Rd -------------------------------------------------------------------------------- /man/dot-shared-params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-shared-params.Rd -------------------------------------------------------------------------------- /man/dot-shared-request.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-shared-request.Rd -------------------------------------------------------------------------------- /man/dot-user_agent_remove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/dot-user_agent_remove.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/figures/logo_gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/logo_gh.png -------------------------------------------------------------------------------- /man/figures/logo_gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/figures/logo_gh.svg -------------------------------------------------------------------------------- /man/get_pkg_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/get_pkg_name.Rd -------------------------------------------------------------------------------- /man/iterate_with_json_cursor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/iterate_with_json_cursor.Rd -------------------------------------------------------------------------------- /man/nectar-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/nectar-package.Rd -------------------------------------------------------------------------------- /man/req_auth_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_auth_api_key.Rd -------------------------------------------------------------------------------- /man/req_init.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_init.Rd -------------------------------------------------------------------------------- /man/req_modify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_modify.Rd -------------------------------------------------------------------------------- /man/req_pagination_policy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_pagination_policy.Rd -------------------------------------------------------------------------------- /man/req_perform_opinionated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_perform_opinionated.Rd -------------------------------------------------------------------------------- /man/req_pkg_user_agent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_pkg_user_agent.Rd -------------------------------------------------------------------------------- /man/req_prepare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_prepare.Rd -------------------------------------------------------------------------------- /man/req_tidy_policy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/req_tidy_policy.Rd -------------------------------------------------------------------------------- /man/resp_body_auto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_body_auto.Rd -------------------------------------------------------------------------------- /man/resp_body_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_body_csv.Rd -------------------------------------------------------------------------------- /man/resp_body_separate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_body_separate.Rd -------------------------------------------------------------------------------- /man/resp_parse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_parse.Rd -------------------------------------------------------------------------------- /man/resp_tidy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_tidy.Rd -------------------------------------------------------------------------------- /man/resp_tidy_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_tidy_json.Rd -------------------------------------------------------------------------------- /man/resp_tidy_unknown.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/resp_tidy_unknown.Rd -------------------------------------------------------------------------------- /man/stabilize_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/stabilize_string.Rd -------------------------------------------------------------------------------- /man/url_normalize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/url_normalize.Rd -------------------------------------------------------------------------------- /man/url_path_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/man/url_path_append.Rd -------------------------------------------------------------------------------- /nectar.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/nectar.Rproj -------------------------------------------------------------------------------- /principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/principles.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/req_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/_snaps/req_prepare.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/resp_parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/_snaps/resp_parse.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/resp_tidy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/_snaps/resp_tidy.md -------------------------------------------------------------------------------- /tests/testthat/fixtures/img-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/fixtures/img-test.png -------------------------------------------------------------------------------- /tests/testthat/fixtures/raw_resps.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/fixtures/raw_resps.rds -------------------------------------------------------------------------------- /tests/testthat/test-call_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-call_api.R -------------------------------------------------------------------------------- /tests/testthat/test-iterate_with_json_cursor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-iterate_with_json_cursor.R -------------------------------------------------------------------------------- /tests/testthat/test-req_auth_api_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_auth_api_key.R -------------------------------------------------------------------------------- /tests/testthat/test-req_body.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/test-req_pagination_policy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_pagination_policy.R -------------------------------------------------------------------------------- /tests/testthat/test-req_perform_opinionated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_perform_opinionated.R -------------------------------------------------------------------------------- /tests/testthat/test-req_pkg_user_agent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_pkg_user_agent.R -------------------------------------------------------------------------------- /tests/testthat/test-req_policy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_policy.R -------------------------------------------------------------------------------- /tests/testthat/test-req_prepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_prepare.R -------------------------------------------------------------------------------- /tests/testthat/test-req_tidy_policy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-req_tidy_policy.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_body_auto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_body_auto.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_body_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_body_csv.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_body_separate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_body_separate.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_parse.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_tidy.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_tidy_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_tidy_json.R -------------------------------------------------------------------------------- /tests/testthat/test-resp_tidy_unknown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-resp_tidy_unknown.R -------------------------------------------------------------------------------- /tests/testthat/test-stabilize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-stabilize.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api2r/nectar/HEAD/tests/testthat/test-utils.R --------------------------------------------------------------------------------