Retrieve information about users. Requires authentication.

get_user(ids, names = NULL, host)

Arguments

ids

Id of the users.

names

Names of the users. Should be without spaces and with the right encoding.

host

URL of the bugzilla instance if missing the R bugzilla is assumed.

Value

A data.frame with information about the users: real name, id, groups, and if they can log in.

If the real name is not provided it uses the email address without the email provider.

References

https://bugzilla.readthedocs.io/en/latest/api/core/v1/user.html#get-user

Examples

if (FALSE) {
use_key()
gu <- get_user(2)
}