示例#1
0
        public async Task <dynamic> GetChannelCommentThreads(string channelId, int maxResults = 5, string textFormat = "plainText", string part = "snippet")
        {
            string requestUrl = urlBuilder.BuildChannelCommentThreadsUrl(channelId: channelId,
                                                                         maxResults: maxResults, textFormat: textFormat, part: part);

            return(await Utils.HttpRequestGetJson(httpClient, requestUrl));
        }