R/api.R

Defines functions get_conversations_history

get_conversations_history <- function(channel, limit, ..., token = Sys.getenv("SLACK_API_TOKEN"), max_results = Inf, max_calls = Inf){

  res <- slackcalls::post_slack(slack_method = 'conversations.history', max_results = max_results, max_calls = max_calls, channel = channel, token = token, limit = limit, ...)
}
yonicd/threads documentation built on March 27, 2023, 8:45 a.m.