这就是我正在做的但是我收到400错误的请求错误
Dim request = String.Format("https://gdata.youtube.com/feeds/api/videos?q={0}&orderby=published&start-index=1&max-results=10&v=2&fields=title,media:group/yt:duration,media:group/media:thumbnail", searchItem)
Dim responseByte() As Byte = New WebClient().DownloadData(request)
Dim responseXML As String = System.Text.UTF8Encoding.UTF8.GetString(responseByte)
答案 0 :(得分:1)
GData将被弃用。我建议使用Data API V3。
这是一个很好的例子。要利用的文件夹中有更多内容。
https://github.com/youtube/api-samples/blob/master/dotnet/Search.cs