addServer | R Documentation |
These functions manage the list of known servers:
addServer()
registers a Posit connect server. Once it has been
registered, you can connect to an account on the server using
connectUser()
.
removeServer()
removes a server from the registry.
addServerCertificate()
adds a certificate to a server.
addServer(url, name = NULL, certificate = NULL, validate = TRUE, quiet = FALSE)
removeServer(name = NULL)
addServerCertificate(name, certificate, quiet = FALSE)
url |
URL for the server. Can be a bare hostname like
|
name |
Server name. If omitted, the server hostname is used. |
certificate |
Optional. Either a path to certificate file or a character vector containing the certificate's contents. |
validate |
Validate that |
quiet |
Suppress output and prompts where possible. |
## Not run:
# register a local server
addServer("http://myrsconnect/", "myserver")
# list servers
servers(local = TRUE)
# connect to an account on the server
connectUser(server = "myserver")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.