Retrieves comment threads using one explicit YouTube filter.
Usage
list_comment_threads(
video_id = NULL,
channel_id = NULL,
thread_ids = NULL,
all_threads_for_channel_id = NULL,
part = c("id", "snippet"),
text_format = "html",
max_results = 100,
page_token = NULL,
simplify = TRUE,
auth = "key",
...
)Arguments
- video_id
Optional video ID.
- channel_id
Optional channel ID.
- thread_ids
Optional character vector of comment-thread IDs.
- all_threads_for_channel_id
Optional channel ID for all threads related to that channel.
- part
Character vector of comment-thread resource parts.
- text_format
Comment text format, `"html"` or `"plainText"`.
- max_results
Maximum total number of threads to return.
- page_token
Optional page token at which to start.
- simplify
If `TRUE`, return one row per top-level comment; otherwise return the raw API response with all collected items.
- auth
Authentication method, `"key"` or `"token"`.
- ...
Additional arguments passed to [tuber_GET()].