【发布时间】:2013-12-27 15:15:11
【问题描述】:
我正在使用 youtube api 2.0 来获取 cmets。 目前我有这个:
YouTubeRequest request = new YouTubeRequest(new YouTubeRequestSettings("Project", devKey));
Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/" + videoId);
Video video = request.Retrieve<Video>(videoEntryUrl);
var comments = request.GetComments(video);
如何更改StartIndex 以获取所有视频?
【问题讨论】:
标签: c# .net youtube-api youtube.net-api