Get user information
get_users.RdRetrieves user information for a list of user IDs using the GetUsers RPC.
Arguments
- client
A
mixi2_clientobject created bymixi2_client().- user_id_list
A character vector of user IDs to retrieve.
Value
A data frame with one row per user. Columns correspond to the fields
returned by the API (e.g. user_id, display_name, icon_url).
Examples
if (FALSE) { # \dontrun{
client <- mixi2_client()
users <- get_users(client, c("user_id_1", "user_id_2"))
} # }