从特定频道显示YouTube视频 [英] Displaying Youtube Videos From Specific Channel

查看:136
本文介绍了从特定频道显示YouTube视频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个YouTube频道,并在那里上传了一些视频.频道是公开的,现在我想通过以下频道网址在我的Android应用中显示所有上传的视频: https://www.youtube.com/channel/UCjD0Dhs3o7UiUQdZpSBADAA

I have created a youtube channel and uploaded few videos there. Channel is public, now i want to display those all uploaded videos in my android app through channel URL which is: https://www.youtube.com/channel/UCjD0Dhs3o7UiUQdZpSBADAA

我也做了一些研究,但是我正在获取教程,以通过硬编码ID(而非频道)显示视频,例如:

I have also done some research but i am getting tutorial to display videos by hardcoded ids not from channel for example: https://github.com/youtube/yt-android-player

任何人都可以引导我吗?我真的很感谢您在此事上的帮助.

Any one guide me is it possible? i would really appreciate your help in matter.

谢谢!

推荐答案

阅读了不同的Youtube API之后,我发现以下步骤可以在Android应用中使用Youtube频道视频.

After reading different Youtube apis i found following steps to consume Youtube Channel Videos in your Android app.

1)在您的Google帐户中创建一个应用程序 2)启用YouTube服务 3)然后您将获得开发人员密钥

1) Create an application in your Google Account 2) Enable youtube services 3) and then you will get developer key

使用该开发人员密钥进行api调用.

use that developer key to make api calls.

4)

String url = "https://www.googleapis.com/youtube/v3/channels?part=snippet%2CcontentDetails%2Cstatistics&id=UCjD0Dhs3o7UiUQdZpSBADAA&key=" + DeveloperKey.DEVELOPER_KEY;

使用上述URL中的Cannel ID以及开发人员密钥来获取您频道下的视频列表.

Use cannel id in above URL along with developer key to get list of videos under your channel.

5)您将获得每个视频的基本信息,但仍然不能在android视频播放器中播放该视频,因此必须具有RTSP网址

5) You will get basic information of each video but still you cannot play that video in your android video player in order to do that you must have RTSP url

,您可以通过将视频ID传递给http://gdata.youtube.com/feeds/mobile/videos/1FJHYqE0RDg

and that url you can obtain by passing video id to http://gdata.youtube.com/feeds/mobile/videos/1FJHYqE0RDg

仅此而已.

这篇关于从特定频道显示YouTube视频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆