Hi,
when trying to connect to the openeo.cloud host today, I received a new error.
I used the method described in the answers to this post: Login Issues openeo R-client dev version for the dev branch of the r-client (see below), which was still working at the beginning of last week.
#devtools::install_github(repo="Open-EO/openeo-r-client",dependencies=TRUE)
library(openeo)
#> Warning: replacing previous import 'jsonlite::unbox' by 'rlang::unbox' when
#> loading 'openeo'
#> Warning: replacing previous import 'jsonlite::flatten' by 'rlang::flatten' when
#> loading 'openeo'
#>
#> Attaching package: 'openeo'
#> The following objects are masked from 'package:base':
#>
#> capabilities, debug
packageVersion("openeo")
#> [1] '1.2.0'
host = "https://openeo.cloud"
# connect and login in one step
con = connect(host, provider = "egi")
#> Warning in value[[3L]](cond): argument ".req" is missing, with no default
#> Error: $ operator is invalid for atomic vectors
# connect and login seperate
con = connect(host)
#> Warning in value[[3L]](cond): argument ".req" is missing, with no default
#> Error: $ operator is invalid for atomic vectors
# login(provider="egi")
Created on 2022-05-02 by the reprex package (v2.0.1)
Session info
sessioninfo::session_info()
#> β Session info βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#> setting value
#> version R version 4.1.3 (2022-03-10)
#> os Ubuntu 20.04.4 LTS
#> system x86_64, linux-gnu
#> ui X11
#> language (EN)
#> collate en_US.UTF-8
#> ctype en_US.UTF-8
#> tz Europe/Berlin
#> date 2022-05-02
#> pandoc 2.17.1.1 @ /usr/lib/rstudio/bin/quarto/bin/ (via rmarkdown)
#>
#> β Packages βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#> package * version date (UTC) lib source
#> base64enc 0.1-3 2015-07-28 [1] CRAN (R 4.1.2)
#> cli 3.3.0 2022-04-25 [1] CRAN (R 4.1.3)
#> curl 4.3.2 2021-06-23 [2] CRAN (R 4.1.0)
#> digest 0.6.29 2021-12-01 [1] CRAN (R 4.1.2)
#> evaluate 0.15 2022-02-18 [1] CRAN (R 4.1.2)
#> fastmap 1.1.0 2021-01-25 [1] CRAN (R 4.1.1)
#> fs 1.5.2 2021-12-08 [1] CRAN (R 4.1.3)
#> generics 0.1.2 2022-01-31 [1] CRAN (R 4.1.2)
#> glue 1.6.2 2022-02-24 [1] CRAN (R 4.1.3)
#> highr 0.9 2021-04-16 [2] CRAN (R 4.1.0)
#> htmltools 0.5.2 2021-08-25 [1] CRAN (R 4.1.1)
#> httr2 0.2.0 2022-04-28 [1] CRAN (R 4.1.3)
#> jsonlite 1.8.0 2022-02-22 [1] CRAN (R 4.1.3)
#> knitr 1.39 2022-04-26 [1] CRAN (R 4.1.3)
#> lubridate 1.8.0 2021-10-07 [1] CRAN (R 4.1.2)
#> magrittr 2.0.3 2022-03-30 [1] CRAN (R 4.1.3)
#> openeo * 1.2.0 2022-05-02 [1] Github (Open-EO/openeo-r-client@eab014a)
#> R6 2.5.1 2021-08-19 [2] CRAN (R 4.1.1)
#> rappdirs 0.3.3 2021-01-31 [2] CRAN (R 4.1.0)
#> reprex 2.0.1 2021-08-05 [1] CRAN (R 4.1.2)
#> rlang 1.0.2 2022-03-04 [1] CRAN (R 4.1.3)
#> rmarkdown 2.14 2022-04-25 [1] CRAN (R 4.1.3)
#> rstudioapi 0.13 2020-11-12 [2] CRAN (R 4.1.0)
#> sessioninfo 1.2.2 2021-12-06 [1] CRAN (R 4.1.2)
#> stringi 1.7.6 2021-11-29 [1] CRAN (R 4.1.2)
#> stringr 1.4.0 2019-02-10 [2] CRAN (R 4.1.0)
#> withr 2.5.0 2022-03-03 [1] CRAN (R 4.1.3)
#> xfun 0.30 2022-03-02 [1] CRAN (R 4.1.3)
#> yaml 2.3.5 2022-02-21 [1] CRAN (R 4.1.2)
#>
#> [1] /home/carola/R/x86_64-pc-linux-gnu-library/4.1
#> [2] /usr/local/lib/R/site-library
#> [3] /usr/lib/R/site-library
#> [4] /usr/lib/R/library
#>
#> ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
As you can see, the error occurs not during login, but already during the connection process.
Also for some reason the reprex was truncated, so I appended a screenshot in addition showing the full message as it appeared in my console.
Thanks as always for any advice!