We are using the Youtube Data API to monitor the performances of our videos and collect the comments on each published video. We have noticed that the number of comments collected via the API are less than what we can see in the studio.youtube.com
The following example can help :https://www.youtube.com/watch?v=T1t6f2KqJ-oThe API return 21 comments while we can see 45 comments in the studio.
The used request is :https://youtube.googleapis.com/youtube/v3/commentThreads?maxResults=50&videoId=T1t6f2KqJ-o
It is reproducible in the API explorer in the following link : https://developers.google.com/youtube/v3/docs/commentThreads/list?hl=fr&apix_params=%7B%22maxResults%22%3A50%2C%22videoId%22%3A%22T1t6f2KqJ-o%22%7D
Is there a way to have the complete list of comments?
Thank you in advance,Yasmine
#youtube-api #youtube-data-api #youtube-v3-api
We tried to get the comments via this endpoint: https://youtube.googleapis.com/youtube/v3/commentThreads?maxResults=50&videoId=T1t6f2KqJ-otheThe expected result is 45 comments but we only got 21 comments.