StackOverflowNewbie
StackOverflowNewbie

Reputation: 40633

YouTube API: orderby causes deleted videos in results?

I have uploaded 1 video to my YouTube channel. Everything works fine when I try to get the list of uploaded videos this way:

http://gdata.youtube.com/feeds/api/users/[*my user name*]/uploads

But when I try to sort it, I get a list of 2 deleted videos that I am assuming were uploaded during one of my earlier tests:

http://gdata.youtube.com/feeds/api/users/[*my user name*]/uploads?orderby=published

Any ideas what might be going on?

Upvotes: 2

Views: 728

Answers (1)

StackOverflowNewbie
StackOverflowNewbie

Reputation: 40633

Including orderby= causes requests to go against the search index rather than the backend datastore:

https://developers.google.com/youtube/2.0/developers_guide_protocol_video_feeds#User_Uploaded_Videos

Upvotes: 2

Related Questions