Connect and login to an existing Enterprise Server server.

h2osteam.login(
  url = NA_character_,
  username = NA_character_,
  password = NA_character_,
  verify_ssl = TRUE,
  cacert = ""
)

Arguments

url

Object of class character representing the Full URL (including schema and port) of the Enterprise Steam server.

username

Object of class character representing the username.

password

Object of class character representing user's password or access token.

verify_ssl

(Optional) A logical value indicating whether to verify SSL when connecting to the server.

cacert

(Optional) Path to a CA bundle file with root and intermediate certificates of trusted CAs.

Value

This method will connect to the Enterprise Steam server and return a SteamConnection object that must be passed to subsequent methods.

Examples

if (FALSE) { conn <- h2osteam.login(url = "https://steam.example.com:9555", username = "AzureDiamond", password = "hunter2") }