我指的是这个文档。 https://developers.google.com/youtube/1.0/developers_guide_python#SearchingVideos
这解释了youtube的各种操作
但我不知道如何从youtube频道获取所有视频
我需要获取所有视频列表标题,网址和该视频的缩略图
任何帮助将不胜感激
感谢
答案 0 :(得分:2)
关于SO还有许多其他问题可能会对您有所帮助。以下是其中一些列表:
Retrieve all videos from youtube playlist using youtube v3 API
YouTube API Return List of All Videos from Specific Category
How do I get a YouTube video thumbnail from the YouTube API?
Unable to get fileDetails part when using YouTube videos API
How to extract the title of a youtube video using python
python: get all youtube video urls of a channel
我希望它有所帮助。
答案 1 :(得分:2)
从文档本身得到答案,万一有人需要它。
yt_service = gdata.youtube.service.YouTubeService()
yt_service.ssl = True
yt_service.developer_key = 'xxx'
yt_service.client_id = 'xxx'
yt_service.email = 'xxx@dd.com'
yt_service.password = 'xxx'
yt_service.source = 'youtube'
yt_service.ProgrammaticLogin()
videos = yt_service.GetYouTubeVideoFeed("https://gdata.youtube.com/feeds/api/users/default/uploads")
然后
for video in videos.entry
print video