The onepass package enables you to use R to interact with your 1Password vault. onepass provides an interface to the 1Password Command Line Interface (CLI), allowing you to query the list of credentials in your vault, and retrieve account usernames and passwords.
Before using this package, please install the 1Password CLI on your computer. You can validate that the CLI works by checking the Getting started instructions.
You can install the released version of onepass from CRAN with:
Once the 1Password CLI is installed, you will need your domain (*.1password.com), the email account, your master password, as well as your secret key.
To integrate 1Password CLI with R on a new machine, setup_op()
will require both the master password and secret key:
Typically on a new machine, you may also receive the following message:
#> To reduce notifications of new devices, insert the following line into the
#> Renviron file (usethis::edit_r_environ() or edit .Renviron):
#> OP_DEVICE = 1234567890abcdefghijklmnopqrstuvwxyz
It is highly recommended that you insert the unique OP_DEVICE
into your .Renviron file - otherwise, you will receive constant email notifications about logins from a new device.
Once you have set up 1Password and connected to the vault, you can connect to 1Password by unlocking the vault. You will also need to do this if your session token expires after 30 minutes. The email account isn’t required as it is implicit based upon your first setup.
This ops
object will contain three elements, the most important being the token. You can use this token and pass it through to see what vaults you have access to:
Within these vaults, you can see the list of passwords you have available:
op_list_items(ops) # All vaults
op_list_items(ops, 'Private') # Just the contents in the private vault
op_list_items(ops, name = 'westjet') # Search for any items with a specific name in it
And most importantly, you can retrieve the username and password for any singular item. You can either use the name, or more reliably, the UUID: