domino.login {domino} | R Documentation |
Logins to Domino server.
domino.login(usernameOrEmail, password,
approvalForSendingErrorReports=FALSE, host)
usernameOrEmail |
Login or e-mail address used when registering for
Domino Data Lab account. Ex. |
password |
Secret password that was set for authenticating in Domino
Data Lab server. If the password is not provided,a password prompt will be
shown for interactive sessions. For non-interactive sessions, this arguments
is required. Ex. |
approvalForSendingErrorReports |
Approval for the Domino client to send
error reports to Domino in order to improve the product
(these will NEVER include any of your data or source code).
This defaults to FALSE. Ex. |
host |
The location of the domino server (this argument is optional)
Ex. |
## Not run:
domino.login("jglodek", TRUE)
domino.login("jglodek","my-super-secret-password", TRUE)
domino.login("jglodek","my-super-secret-password", TRUE, "https://app.dominodatalab.com")
## End(Not run)