I'm hoping to get analytics on all videos on my YouTube Channel. I have the following code:
baseURL <- "https://youtubeanalytics.googleapis.com/v2/reports?dimensions=video&endDate=2021-05-25&ids=channel%3D%3DMINE&maxResults=200&metrics=views%2CaverageViewDuration%2Ccomments%2Cdislikes%2CestimatedMinutesWatched%2Clikes%2Cshares&sort=-views&startDate=2000-01-01"
temp <- GET(baseURL, myToken)
And this returns 200 videos worth of analytics, which is great, but I'd like to get all videos (around 5,000) instead of 200. I've used a Next Page Token in the YouTube Data API, but didn't find one in analytics. Is this possible? If not, what is a good way to go about doing this?