You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function get_comment_threads() does not collect all comments when the argument max_results is set to be > 100. Instead, it repeats the most recent 100 comments as often as necessary to reach a number of rows that seems to be equivalent to the total number of comments (minus the replies).
The text was updated successfully, but these errors were encountered:
To add to this: the function does not simplify with simplify = T if part = "snippet" or part = "id, snippet". It is also unable to retrieve more than 100 results if simplify = F, but this is quite obviously related to the fact that it does never really return more than 100 results (thanks for the pointer, I was just trying to figure out what's wrong here!)
The function
get_comment_threads()
does not collect all comments when the argumentmax_results
is set to be > 100. Instead, it repeats the most recent 100 comments as often as necessary to reach a number of rows that seems to be equivalent to the total number of comments (minus the replies).The text was updated successfully, but these errors were encountered: