Wednesday, May 30, 2012

[YouTube-API] How do I get my Watch Later playlist using the C# YouTube API?

Here is how I get my request object?

        private static YouTubeRequest _Request = null;
        private static YouTubeRequest Request
        {
            get 
            {
                if (_Request == null)
                {
                    YouTubeRequestSettings settings = new YouTubeRequestSettings("YouTubeApp", Properties.Settings.Default.GoogleAPIKey, Username, Password);
                    _Request = new YouTubeRequest(settings);
                }
                return _Request;
            }
        }

And here is how I get my playlist, passing in Default for who:

        public static Feed<Google.YouTube.Playlist> GetPlaylists(string who)
        {
            return Request.GetPlaylistsFeed(who);
        }


What little I find online says the Watch Later list should be included but it does not.  So what am I missing?  thanks...

--
You received this message because you are subscribed to the Google Groups "YouTube APIs Developer Forum" group.
To view this discussion on the web visit https://groups.google.com/d/msg/youtube-api-gdata/-/SbiMQIKrxdgJ.
To post to this group, send email to youtube-api-gdata@googlegroups.com.
To unsubscribe from this group, send email to youtube-api-gdata+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/youtube-api-gdata?hl=en.

No comments:

Post a Comment