> rsconnect::setAccountInfo(name='...', token='...', secret='...')
Error in function (type, msg, asError = TRUE) :
Failed to connect to api.shinyapps.io port 443: Timed out
> options(RCurlOptions = list(proxy = "http://my.proxy:my.port")
> rsconnect::setAccountInfo(name='...', token='...', secret='...')Error in function (type, msg, asError = TRUE) :Received HTTP code 407 from proxy after CONNECT
#same thing happens with the following settings:
> options(RCurlOptions = list(proxy = "userid:password@http://my.proxy:my.port")
> options(RCurlOptions = list(proxy = "DOMAIN\\userid:password@http://my.proxy:my.port")
export all_proxy=DOMAIN\\userid:password@http://my.proxy:my.port
export https_proxy=DOMAIN\\userid:password@http://my.proxy:my.port
# in R console
> rsconnect::setAccountInfo(name='...', token='...', secret='...')Error in function (type, msg, asError = TRUE) :Failed to connect to api.shinyapps.io port 443: Timed outTiming stopped at: 0 0.08 42.59
http_proxy=http://my.proxy:my.port/http_proxy_user=user:passwdhttps_proxy=https://my.proxy:my.port/https_proxy_user=user:passwd
> rsconnect::setAccountInfo(name='...', token='...', secret='...')Error in function (type, msg, asError = TRUE) :Received HTTP code 407 from proxy after CONNECT
options(shinyapps.service_url = "http://api.shinyapps.io/v1")
> rsconnect::setAccountInfo(name='...', token='...', secret='...')Error in function (type, msg, asError = TRUE) :Received HTTP code 407 from proxy after CONNECT
> library(rsconnect)> setInternet2(use = TRUE)> options(rsconnect.http = "internal")
> rsconnect::setAccountInfo(name='...', token='...', secret='...')
Error in socketConnection(host = host, port = as.integer(port), open = "w+b", : cannot open the connectionIn addition: Warning message:In socketConnection(host = host, port = as.integer(port), open = "w+b", : api.shinyapps.io:80 cannot be openedTiming stopped at: 0 0.06 60.07 --
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/33be15f4-b710-4239-ad48-37d103e2f551%40googlegroups.com.
options(RCurlOptions = list(proxy = "PROXY:PORT", proxyuserpwd="USER:PWD", verbose = TRUE))