var commentThreadsRequest = youTubeService.CommentThreads.List("replies,snippet");
commentThreadsRequest.VideoId = "bla-bla"; // here real id
commentThreadsRequest.MaxResults = 100; // 1 - 100;
var response = commentThreadsRequest.Execute();
このようにして100のコメントが得られます。 コメントはどのようにして取得できますか?YouTube API v3からのコメントの入手方法
resultsPerPageを指定することはできますか?