mica.login: Open connection with Mica

View source: R/mica.R

mica.loginR Documentation

Open connection with Mica

Description

Open a connection with Mica and returns a Mica object. When the two-factor authentication mechanism is enabled, the user will be prompt for one-time password input.

Usage

mica.login(
  username = getOption("mica.username", "anonymous"),
  password = getOption("mica.password", "password"),
  url = getOption("mica.url"),
  opts = getOption("mica.opts", list())
)

Arguments

username

User name in mica. Can be provided by "mica.username" option.

password

User password in mica. Can be provided by "mica.password" option.

url

Mica url or list of mica urls. Can be provided by "mica.url" option. Secure http (https) connection is required.

opts

Curl options. Can be provided by "mica.opts" option.

Value

A Mica object.

Examples

## Not run: 
# login using credentials from mica.username and mica.password options
m <- mica.login("https://mica-demo.obiba.org")
# login by providing credentials
m <- mica.login("administrator", "password", "https://mica-demo.obiba.org")

## End(Not run)

obiba/micar documentation built on Nov. 8, 2023, 11:51 p.m.