I've been struggling with what I thought would be a simple task: Adding a video to a youtube playlist. I've got the uri and video id, so this should work, right?
uri = "http://gdata.youtube.com/feeds/api/users/dolkarr/playlists/AAnCXJ-nfQZwZYqo69euVZVyJ_XofIJs"
vid = "dmoDLyiQYKw"
video = yt_service.AddPlaylistVideoEntryToPlaylist(uri, vid)
But it returns this error response:
gdata.service.RequestError: {'status': 400, 'body': 'Invalid request URI', 'reason': 'Bad Request'}
After a bit of research, I found out that it only works for the 16 character playlist IDs which some of my older playlists have. Prefixing "PL" makes no difference.
Someone "solved" the problem by using a playlist ID that doesn't contain "-", but I am unable to create such a playlist! All of them start with AAnCXJ-nfQ...
So, all I'm asking... is there any possibility to make this work? Either by somehow creating a playlist with old-style ID or making it accept these... I need to create several playlists with 200 videos each and I really don't want to fill them all manually... Thanks for response!

