如何使用 Google API Client Library for Java 检索 YouTube 缩略图
如果您能让我知道使用 Google API Client Library for Java 检索 YouTube 缩略图的方法,我将不胜感激,类似于我们使用 gdata 获取缩略图的方式。
List<String> thumbnails = new LinkedList<String>();
for (MediaThumbnail mediaThumbnail : mediaGroup.getThumbnails()) {
thumbnails.add(mediaThumbnail.getUrl());
}
期待, 问候, 罗尼
I would be obliged, if you could kindly let me know the means by which I can retrieve the youtube thumbnails using Google API Client Library for Java, similar to the way in which we fetched thumbnails using gdata.
List<String> thumbnails = new LinkedList<String>();
for (MediaThumbnail mediaThumbnail : mediaGroup.getThumbnails()) {
thumbnails.add(mediaThumbnail.getUrl());
}
Looking forward,
Regards,
Rony
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用参考页中的示例网址:
我们可以提取相关 JSON 片段之一的示例:
您可以修改 要解析的示例类缩略图对象。
Using the example URL from the reference page:
we can extract an example of one of the relevant pieces of JSON:
You can modify the sample classes to parse the thumbnail object.