youtube - gdata api - 特定列?
我正在使用 gdata api 来检索有关特定 youtube 视频的信息,如下所示:
Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/ADos_xW4_J0?format=5");
Video video = request.Retrieve<Video>(videoEntryUrl);
但是,我想知道是否有一种方法可以指定我只对视频的某些字段感兴趣,而不是获取完整的视频源。例如,假设我只对视频的评论数和观看数感兴趣。但是,上面的代码将返回整个 Video 类,这似乎我消耗的带宽可能超过所需的带宽。
I am using gdata api to retrieve information about specific youtube videos using something like this below:
Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/ADos_xW4_J0?format=5");
Video video = request.Retrieve<Video>(videoEntryUrl);
However, I wonder if there is a way to specify that I am only interested in certain fields of the video rather than getting the complete video feed. For example, say I am only interested in commentcount AND viewcount of the video. However, the code above will return the entire Video class which seems I may be consuming more bandwidth than needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正在寻找这样的东西吗?
Looking for something like this?