我按照我想要使用YouTube数据API的方式碰壁了。我有一个用户帐户,尝试充当“聚合器”,通过将各种其他渠道的视频添加到基于类别的大约15个播放列表中的一个。我的问题是,我无法将所有这些视频整合到一个Feed中,因为它们属于各种YouTube用户。我想把它们全部放到一个列表中,所以我可以按最新和最流行的方式对主列表进行排序,以便在我的网络应用程序中填充不同的视图。
如何获取用户添加到其任何播放列表中的所有视频的列表?
YouTube必须跟踪此类内容,因为如果您进入“http://www.youtube.com/”任意用户页面的“Feed”部分,它会为您提供一系列活动,其中包含添加到的视频播放列表。
要说清楚,我不想获取仅由此用户上传的视频列表,因此http://gdata.../<user>/uploads
将无效。由于有许多不同的播放列表,http://gdata.../<user>/playlists
也无法使用,因为每次我想检查新视频时,我都需要提出大约15个请求。
似乎无法检索用户添加到其所有播放列表中的所有视频的列表。有人可能会想到一种我可能忽略的方法吗?
答案 0 :(得分:0)
用于从播放列表中检索youtube链接的类似内容。它仍然需要改进。
import urllib2
import xml.etree.ElementTree as et
import re
import os
more = 1
id_playlist = raw_input("Enter youtube playlist id: ")
number_of_iteration = input("How much video links: ")
number = number_of_iteration / 50
number2 = number_of_iteration % 50
if (number2 != 0):
number3 = number + 1
else:
number3 = number
start_index = 1
while more <= number3:
#reading youtube playlist page
if (more != 1):
start_index+=50
str_start_index = str(start_index)
req = urllib2.Request('http://gdata.youtube.com/feeds/api/playlists/'+ id_playlist + '?v=2&&start-index=' + str_start_index + '&max-results=50')
response = urllib2.urlopen(req)
the_page = response.read()
#writing page in .xml
dat = open("web_content.xml","w")
dat.write(the_page)
dat.close()
#searching page for links
tree = et.parse('web_content.xml')
all_links = tree.findall('*/{http://www.w3.org/2005/Atom}link[@rel="alternate"]')
#writing links + attributes to .txt
if (more == 1):
till_links = 50
else:
till_links = start_index + 50
str_till_links = str(till_links)
dat2 = open ("links-"+ str_start_index +"to"+ str_till_links +".txt","w")
for links in all_links:
str1 = (str(links.attrib) + "\n")
dat2.write(str1)
dat2.close()
#getting only links
f = open ("links-"+ str_start_index +"to"+ str_till_links +".txt","r")
link_all = f.read()
new_string = link_all.replace("{'href': '","")
new_string2 = new_string.replace("', 'type': 'text/html', 'rel': 'alternate'}","")
f.close()
#writing links to .txt
f = open ("links-"+ str_start_index +"to"+ str_till_links +".txt","w")
f.write(new_string2)
f.close()
more+=1
os.remove('web_content.xml')
print "Finished!"