我可以通过YouTube v3数据API访问我的观看历史记录,但它只返回我最近的30个视频(尽管我在YouTube网站上查看观看历史记录时会看到更多)。
然后当我看另一个视频时,它会返回31。当我看另一个时,32。如果它能返回30多个,为什么它最初没有返回更多?我知道API可能有一个限制,但为什么要从30开始然后增长?对于分页,真的不应该有限制,对吧?
我一定做错了什么。这是我的代码:
def getWatchHistory(youtube):
playlistId = getWatchHistoryPlaylistId(youtube)
videos = retrieveVideos(youtube, playlistId);
return videos # Only returns 30, 31, 32 videos, etc. though I have many more in my History
def getWatchHistoryPlaylistId(youtube):
channels_response = youtube.channels().list(
part="contentDetails",
mine=True,
).execute()
channel = channels_response["items"][0]
playlistId = channel["contentDetails"]["relatedPlaylists"]["watchHistory"]
return playlistId
def retrieveVideos(youtube, playlistId, nextPageToken=None):
# Search the specified playlist and list all videos
playlistItems_response = youtube.playlistItems().list(
part="snippet,contentDetails",
playlistId=playlistId,
maxResults=50,
pageToken=nextPageToken
).execute()
results = []
for x in playlistItems_response["items"]:
videoTitle = x["snippet"]["title"]
videoId = x["contentDetails"]["videoId"]
videoSpec = videoId + ": " + videoTitle
print 'adding to results: ' + videoSpec
results.append(videoSpec)
if ("nextPageToken" in playlistItems_response):
pageToken = playlistItems_response["nextPageToken"]
results.extend(retrieveVideos(youtube, playlistId, pageToken));
return results
else:
return results
更新:截至2016年9月15日,watchHistory不再以任何身份提供,因此,遗憾的是,这现在无关紧要
这似乎是一个已知的错误,最初报告于2013年。谷歌代码线程上解释了完全相同的行为:https://code.google.com/p/gdata-issues/issues/detail?id=4642
"我得到了结果,但就像张贴的几张海报一样,它们都是最近的视频(可能相当于一天的时间)。我似乎找不到任何关于检索时间限制的文档。有人找到了解决方法或弄清楚了历史记录有多长?"(最近在帖子上的评论)
看起来我运气不好,直到谷歌决定解决这个问题。希望有人能证明我(以及谷歌代码线程中的其他人)错了。