servers()
lists all known servers; serverInfo()
gets metadata about
a specific server. Cloud servers shinyapps.io
and posit.cloud
are always
automatically registered and available.
Value
servers()
returns a data frame with registered server names and URLs.
serverInfo()
returns a list with details for a particular server.
Examples
# List all registered servers
servers()
#> name url certificate
#> 1 shinyapps.io https://api.shinyapps.io/v1 Amazon... (redacted)
#> 2 posit.cloud https://api.posit.cloud/v1 Amazon... (redacted)
# Get information about a server
serverInfo("posit.cloud")
#> $name
#> [1] "posit.cloud"
#>
#> $url
#> [1] "https://api.posit.cloud/v1"
#>
#> $certificate
#> [1] "Amazon... (redacted)"
#>