我正在尝试使用 Winforms 应用程序收集 YouTube 视频的数据。当我如下所示调用 YTSearch()
方法时,程序在到达
时停止响应
var slResponse = await slRequest.ExecuteAsync();
请求已启动,但并未停止,既未完成,也未触发 try catch 上的 catch。我已经设法使用 Discord.NET 使用 Discord 机器人获得完全相同的功能。在输出中是
Exception thrown: 'Google.GoogleApiException' in Google.Apis.dll
Exception thrown: 'Google.GoogleApiException' in mscorlib.dll
Exception thrown: 'Google.GoogleApiException' in mscorlib.dll`
图书馆:
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Windows.Forms;
using Google.Apis.YouTube.v3;
using Google.Apis.Services;
using System.Diagnostics;
方法:
public async Task<List<Video>> YTSearch(string query)
{
string ytAPI = APIKEY; // Ommitted
var ytService = new YouTubeService(new BaseClientService.Initializer()
{
ApiKey = ytAPI,
ApplicationName = "YouTubeDownloader"
});
var slRequest = ytService.Search.List("snipper");
slRequest.Q = query;
slRequest.MaxResults = 10;
var slResponse = await slRequest.ExecuteAsync();
List<Video> vidList = new List<Video>();
return vidList;
}
调用:
private void btnSearch_Click(object sender, EventArgs e)
{
List<Video> vidList = YTSearch(txtSearch.Text).Result;
}
我还没有对此进行测试,但我相当确定您需要使用 ConfigureAwait(false)
。因此,在您的 YTSearch
方法中,您需要使用以下行:
var slResponse = await slRequest.ExecuteAsync().ConfigureAwait(false);
这是必需的,因为您要通过使用 .Result
来阻止按钮处理程序中的结果。
This MSDN article有点老了,但是说明了问题。
我是一名优秀的程序员,十分优秀!