Hi people,
Now, I use this code in C# to obtain the video details from the older
Youtube API:
System.Xml.XmlTextReader VideoDetails = new
System.Xml.XmlTextReader("http://www.youtube.com/api2_rest?
method=youtube.videos.get_details&dev_id=ZJWz5HmpQHU&video_id=VID");
DataSet ds = new DataSet();
ds.ReadXml(VideoDetails);
I have referenced the Google Data API SDK dlls on my project, and I
get a lot of classes to use in my code...
But I don`t have any ideia of what class I need use to obtain the
details of the videos with the new API.
Can someone help me?