A have a little problem/question.
Im trying to retrieve the most videos from the youtube api, but it seems that my output are not correct. when I'm using this url http://gdata.youtube.com/feeds/api/standardfeeds/most_viewed i get a lot of videos with many views, but not all i think. for example the extreme popular video gangnam style are not present even though it has many more views than some of the other videos in the result. Is it because i use a wrong url or do i get old data or something else??
EDIT: code
feed = yt_service.GetYouTubeVideoFeed('http://gdata.youtube.com/feeds/api/standardfeeds/most_viewed')
for entry in feed.entry:
print entry.statistics.view_count, ' : ', entry.media.title.text