How do you do it? I simply can't figure it out :P
Here's how i get the standard playlists
Feed<Playlist> feed = mainRequest.Get<Playlist>(new Uri("https://gdata.youtube.com/feeds/api/users/default/playlists"));
Playlist playlist = feed.Entries.ElementAt<Playlist>(0);
But using the same method on getting the watch_later playlist like so
Feed<Playlist> feed = mainRequest.Get<Playlist>(new Uri("https://gdata.youtube.com/feeds/api/users/default/watch_later"));
returns the videos in the watch_later playlist... i've tried pretty much everything i could come up with and nothing works. So how to do it?
I need the playlist since i'm trying to add videos to it.