mirror of
https://github.com/sensebox/opensensmapr
synced 2025-02-22 14:53:57 +01:00
9 lines
172 B
R
9 lines
172 B
R
check_api = function() {
|
|
skip_on_cran()
|
|
|
|
code = NA
|
|
try({
|
|
code = httr::status_code(httr::GET(osem_endpoint()))
|
|
})
|
|
if (is.na(code)) skip('API not available')
|
|
}
|