Learn R Programming

QBMS (version 2.0.0)

login_bms: Login to the Server

Description

Connects to the BMS or related server using a username and password. If these are not provided, a pop-up window will prompt the user to enter their credentials. The function handles authentication and stores the resulting access token internally for subsequent requests.

Usage

login_bms(username = NULL, password = NULL, encoding = "json")

Value

No return value. The access token is stored internally for future use.

Arguments

username

The username (optional, default is NULL). If not provided, the pop-up window is triggered.

password

The password (optional, default is NULL). If not provided, the pop-up window is triggered.

encoding

Specifies how the request body should be encoded: form (application/x-www-form-urlencoded), multipart (multipart/form-data), or json (application/json). Default is "json".

Author

Khaled Al-Shamaa (k.el-shamaa@cgiar.org)

Examples

Run this code
if(interactive()) {
  set_qbms_config("https://bms.icarda.org/ibpworkbench", engine = "bms")
  
  # Login using your BMS account (interactive mode)
  login_bms()
  
  # You can pass BMS username and password as parameters (batch mode)
  # login_bms("username", "password")
}

Run the code above in your browser using DataLab