Generate Basic authentication strings
Combine usernames with passwords with colons, and generate base64-encoded strings to be used for user authentication.
auth_basic(user, password)
user
: A vector of usernames.password
: A vector of passwords.A character vector of encoded credentials.
servr::auth_basic("foo", "B@R")