Curl problem running shiny application on local machine.

Good morning,

I have been working with this shiny application for over a year. I have never had a problem running the application locally or publishing to RStudio Connect. However, yesterday when attempting to run the app locally after some minor updates I have run into a bit of a problem. Again, this has never occurred before and I have yet to find a solution to this problem. Any help would be greatly appreciated!

 shiny::runApp('QSDashboardUCC')

Loading required package: shiny
Error in curl::curl_fetch_memory(url, handle = handle) :
schannel: CertGetCertificateChain trust error CERT_TRUST_IS_UNTRUSTED_ROOT

Please see session info below.

sessionInfo()

R version 3.6.0 (2019-04-26)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 16299)

Matrix products: default

locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252

attached base packages:
[1] stats graphics grDevices utils datasets methods base

other attached packages:
[1] webshot_0.5.1 Cairo_1.5-10 car_3.0-3 carData_3.0-2
[5] formattable_0.2.0.1 boot_1.3-22 changepoint_2.2.2 ggQC_0.0.31
[9] rpivotTable_0.3.0 readxl_1.3.1 V8_2.2 plotly_4.9.0
[13] ggfortify_0.4.7 tidyquant_0.5.6 quantmod_0.4-15 TTR_0.23-4
[17] PerformanceAnalytics_1.5.2 xts_0.11-2 zoo_1.8-6 lubridate_1.7.4
[21] forcats_0.4.0 stringr_1.4.0 dplyr_0.8.1 purrr_0.3.2
[25] readr_1.3.1 tidyr_0.8.3 tibble_2.1.3 ggplot2_3.2.0
[29] tidyverse_1.2.1 stringi_1.4.3 ggthemes_4.2.0 knitr_1.23
[33] rmarkdown_1.13 shinyWidgets_0.4.8 shinydashboardPlus_0.7.0 shinydashboard_0.7.1
[37] shinyjs_1.0 shinythemes_1.1.2 aws.s3_0.3.12 DT_0.7
[41] shiny_1.3.2

loaded via a namespace (and not attached):
[1] nlme_3.1-140 httr_1.4.0 tools_3.6.0 backports_1.1.4 R6_2.4.0
[6] lazyeval_0.2.2 colorspace_1.4-1 withr_2.1.2 tidyselect_0.2.5 gridExtra_2.3
[11] curl_4.0 compiler_3.6.0 cli_1.1.0 rvest_0.3.4 xml2_1.2.0
[16] scales_1.0.0 quadprog_1.5-7 digest_0.6.19 foreign_0.8-71 rio_0.5.16
[21] base64enc_0.1-3 pkgconfig_2.0.2 htmltools_0.3.6 htmlwidgets_1.3 rlang_0.3.4
[26] rstudioapi_0.10 generics_0.0.2 jsonlite_1.6 zip_2.0.2 magrittr_1.5
[31] Rcpp_1.0.2 Quandl_2.10.0 munsell_0.5.0 abind_1.4-5 grid_3.6.0
[36] promises_1.0.1 crayon_1.3.4 lattice_0.20-38 haven_2.1.0 hms_0.4.2
[41] pillar_1.4.1 glue_1.3.1 evaluate_0.14 data.table_1.12.2 modelr_0.1.4
[46] httpuv_1.5.1 cellranger_1.1.0 gtable_0.3.0 assertthat_0.2.1 xfun_0.7
[51] openxlsx_4.1.0.1 mime_0.7 xtable_1.8-4 broom_0.5.2 later_0.8.0
[56] viridisLite_0.3.0 aws.signature_0.5.0

Thank you in advance for your help!

Cheers,
Matt

Resolved the issue. At least temporarily by the following:

httr::set_config(httr::config(ssl_verifypeer=0L))

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.