
Check several phone numbers in one call
Source:R/phone_number_checker.R
check_phones_on_telegram.RdConvenience wrapper around [check_phone_on_telegram()] that accepts either a character vector or a single comma-separated string (matching the upstream Python CLI). Duplicates are silently de-duplicated.
Value
A tibble with one row per unique phone number. Successful lookups expose the user's public fields; failures expose an `error` column.
Examples
if (FALSE) { # \dontrun{
client <- TelegramClient$new("my_session", api_id = 123, api_hash = "abc")
client$connect()
check_phones_on_telegram(client, c("+15551234567", "+15559876543"))
} # }