youtube - gdata api - 特定列?

发布于 2024-11-25 12:59:13 字数 364 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔女人霸气范 2024-12-02 12:59:13

正在寻找这样的东西吗?

http://jsonformatter.curiousconcept.com/#http://gdata.youtube.com/feeds/api/videos/ADos_xW4_J0?format=5&fields=yt:statistics,gd:comments&alt=json

Looking for something like this?

http://jsonformatter.curiousconcept.com/#http://gdata.youtube.com/feeds/api/videos/ADos_xW4_J0?format=5&fields=yt:statistics,gd:comments&alt=json
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文