0

我一直在我的应用程序中使用 youtube API V3。我参考了这个链接来检索与关键字关联的搜索结果。

    public static void Search(string keyword, ref List<string> videoList)
    {
        // Validate keyword
        if (string.IsNullOrWhiteSpace(keyword))
        {
            return;
        }
        // Create a youtube service
        YoutubeService youtube = new YoutubeService(new BaseClientService.Initializer()
        {
            ApiKey = GoogleCredentials.apiKey
        });

        SearchResource.ListRequest listRequest = youtube.Search.List("snippet");
        listRequest.Q = keyword;
        listRequest.Order = SearchResource.Order.Rating;

        // Fetch the response from youtube
        SearchListResponse searchResponse = listRequest.Fetch();


        foreach (SearchResult searchResult in searchResponse.Items)
        {
            videoList.Add(searchResult.Id.VideoId);
        }
    }

在这行代码中

        SearchListResponse searchResponse = listRequest.Fetch();

它引发以下错误。

Google.Apis.dll 中出现“Google.GoogleApiRequestException”类型的未处理异常附加信息:Google.Apis.Requests.RequestError

  Bad Request [400]

可能是什么问题呢?

4

1 回答 1

0

我犯了一个愚蠢的错误。我没有使用 API 密钥,而是使用了客户端密码。更换后,错误解决。

于 2013-08-13T10:21:04.663 回答