gpt4 book ai didi

c# - 程序未响应 SearchListResponse

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:08 25 4
gpt4 key购买 nike

我正在尝试使用 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有点老了,但是说明了问题。

关于c# - 程序未响应 SearchListResponse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49709804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com