Nothing
#' Getting a list of reposts from a channel
#' @description Allows you to get a list of reposts of publications from a channel to other channels.
#' @param channel_id Channel ID (@username, t.me/username, t.me/joinchat/AAAAABbbbbcccc ... or channel ID in 'TGStat')
#' @param start_date Date forwards from
#' @param end_date Date forwards to
#'
#' @return tibble with forwards
#' @export
#'
#' @references See also \href{https://api.tgstat.ru/docs/ru/channels/forwards.html}{TGStat API Documentation of metrod channels/forwards}
#'
#' @examples
#' \dontrun{
#' forwards <- tg_channel_forwards(
#' channel_id = 'R4marketing',
#' start_date = '2021-01-01',
#' end_date = '2021-09-30'
#' )
#' }
tg_channel_forwards <- function(
channel_id = tg_get_channel_id(),
start_date = Sys.Date() - 15,
end_date = Sys.Date()
) {
limit <- 50
offset <- 0
iteraction <- 0
responses <- list()
repeat {
iteraction <- iteraction + 1
resp <- tg_make_request(
method = 'channels/forwards',
token = tg_get_token(),
channelId = channel_id,
limit = limit,
offset = offset,
startDate = as.numeric(as.POSIXct(start_date)),
endDate = as.numeric(as.POSIXct(end_date)),
extended = 1
)
if (length(resp$response) == 0) {
cli_alert_warning("No data!")
if ( iteraction > 1 ) {
break
} else {
return(NULL)
}
}
responses <- append(responses, list(resp$response))
if ( length(resp$response$items) < limit ) break
offset <- offset + limit
}
channels <- map_dfr(responses, tg_parse_response, parse_obj = 'channels')
items <- map_dfr(responses, tg_parse_response, parse_obj = 'items')
data <- left_join(items, channels, by = c("channelId" = "id")) %>%
rename_with(to_snake_case) %>%
mutate(post_date = as.POSIXct(.data$post_date, origin = '1970-01-01'))
return(data)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.