Hi
I have below code . I want to get description , search keywords of that video which have been published since last 2 days. I want only shorts Video.
var client = new RestClient("youtube/v3");
var request = new RestRequest("search", Method.GET);
request.AddParameter("part", "snippet");
request.AddParameter("q", "sports shorts");
request.AddParameter("maxResults", "100");
request.AddParameter("type", "video");
request.AddParameter("order", "viewCount");
request.AddParameter("videoDuration", "short");
Thanks