Beispiel #1
0
        public async Task <dynamic> Search(string query, string part = "snippet", string type = "Video", int maxResults = 5, int videoCategory = 10)
        {
            string requestUrl = urlBuilder.BuildSearchUrl(query, part, type, maxResults, videoCategory);

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