mirror of
https://github.com/sensebox/opensensmapr
synced 2025-02-23 07:53:58 +01:00
10 lines
172 B
R
10 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')
|
||
|
}
|