使用Youtube API v3播放YouTube视频

时间:2017-01-06 15:11:50

标签: c# wpf youtube-api

我刚刚开始使用Youtube API v3 for C#(WPF),我有一些问题需要了解它是如何工作的。我已经阅读了Google Developers API中的示例,但我没有找到播放视频的简单示例。

我使用此代码检索与查询字符串匹配的视频列表:

YouTubeService yt = new YouTubeService(new BaseClientService.Initializer() 
{ ApiKey = "MyAPIKey" });


var searchListRequest = yt.Search.List("snippet");

//searchListRequest.ChannelId = "YOUR_CHANNEL_ID";
searchListRequest.Q = "Google"; // Replace with your search term.
searchListRequest.MaxResults = 10;

var searchListResult = searchListRequest.Execute();
foreach (var item in searchListResult.Items)
{
     Console.WriteLine("ID:" + item.Id.VideoId);

     Console.WriteLine("snippet:" + item.Snippet.Title);
     lista.Items.Add(item.Snippet.Title);

}

使用此代码,我将获得Youtube的10个结果列表。 我在其他帖子中读到使用WebService,但我没有在列表结果中找到该视频 如何访问视频? 我是否可以使用其他方法进行研究?

0 个答案:

没有答案