Skip to contents

Retrieves user information for a list of user IDs using the GetUsers RPC.

Usage

get_users(client, user_id_list)

Arguments

client

A mixi2_client object created by mixi2_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"))
} # }