Now that YouTube API v2 has ended, I want to memorialize the old feed URLs I used for my lifestream and their replacements.
Feed of Videos I published: http://gdata.youtube.com/feeds/base/users/davidblume/uploads?orderby=published
Feed of Videos I favorited: http://gdata.youtube.com/feeds/api/users/davidblume/favorites?v=2
Now, in v3, usernames aren't used anymore, and IDs are. Videos I published can still be retrieved with a (different) GET call, but videos I favorited require authentication and a sequence of steps:
Videos I published: https://www.youtube.com/feeds/videos.xml?channel_id=UCEggwBSd9sM3nG3drXQjFhQ
Videos I favorited: (Use a cronjob to make an RSS feed from this recipe: https://developers.google.com/youtube/v3/guides/implementation/favorites)
Implementation and Migration: Favorites
Feed of Videos I published: http://gdata.youtube.com/feeds/base/users/davidblume/uploads?orderby=published
Feed of Videos I favorited: http://gdata.youtube.com/feeds/api/users/davidblume/favorites?v=2
Now, in v3, usernames aren't used anymore, and IDs are. Videos I published can still be retrieved with a (different) GET call, but videos I favorited require authentication and a sequence of steps:
Videos I published: https://www.youtube.com/feeds/videos.xml?channel_id=UCEggwBSd9sM3nG3drXQjFhQ
Videos I favorited: (Use a cronjob to make an RSS feed from this recipe: https://developers.google.com/youtube/v3/guides/implementation/favorites)
Implementation and Migration: Favorites