Fetches message reactions for a channel by username or numeric id.
Usage
download_channel_reactions(
client,
channel,
limit = Inf,
start_date = NULL,
end_date = NULL,
include_channel = TRUE,
show_progress = TRUE,
output_file = NULL,
chunk_size = 5000L,
...
)Arguments
- client
TelegramClient instance.
- channel
character or numeric. Channel username (with or without "@") or numeric id.
- limit
integer or Inf. Maximum number of messages to fetch.
- start_date
POSIXct/Date/character. Earliest date to include (UTC).
- end_date
POSIXct/Date/character. Latest date to include (UTC).
- include_channel
logical. If TRUE, include channel fields on every row.
- show_progress
logical. If TRUE, display a progress bar.
- output_file
character or NULL. When set, rows are written to this CSV file in chunks instead of being accumulated in memory.
- chunk_size
integer. Number of rows to buffer before each write when
output_fileis set. Default 5000.- ...
Passed to client$iter_messages() (e.g. offset_id, max_id, min_id).
