The goal of autheliar is to provide an R interface to the Authelia API, allowing a low-overhead way to bring authentication into R applications.
For now this package is only available from GitHub.
# install.packages("devtools")
devtools::install_github("liamgilbey/autheliar")
The central object to autheliar
is the R6 class authelia
. As with
all R6 classes, a new ldap
object is created with the new
method:
auth <- autheliar::authelia$new("https://authelia.example.com")
Logging into the server can be achieved using first-factor authentication:
auth$firstfactor(
username = "John",
password = "secretpassword"
)