asp.net4.0アプリケーションにYou-tubeAPIを実装しました。カテゴリを除く他のすべてのパラメーターにアクセスできます。
YouTubeRequestSettings settings = new YouTubeRequestSettings(ApplicationName,developerKey,myUserName,myPassword);
YouTubeRequest request = new YouTubeRequest(settings);
Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/" + YouTubeID + "");
Video objVideo = request.Retrieve<Video>(videoEntryUrl);
var desc= objVideo.Description;
var title= objVideo.Title;
var category= ? ;
カテゴリを取得するにはどうすればよいですか?
ありがとう