Поиск загруженного видео YouTube с моего видеоканала YouTube с помощью C#

В Youtube, пожалуйста, помогите мне в поиске видео, которое я загрузил на моем канале YouTube.. Вот код, который я пытаюсь..

namespace Google.Apis.YouTube.Samples
{

that you have enabled the YouTube Data API for your project.
  /// </summary>
  internal class Search
  {
    [STAThread]
    static void Main(string[] args)
    {
      Console.WriteLine("YouTube Data API: Search");
      Console.WriteLine("========================");

      try
      {
        new Search().Run().Wait();
      }
      catch (AggregateException ex)
      {
        foreach (var e in ex.InnerExceptions)
        {
          Console.WriteLine("Error: " + e.Message);
        }
      }

      Console.WriteLine("Press any key to continue...");
      Console.ReadKey();
    }

    private async Task Run()
    {
      var youtubeService = new YouTubeService(new BaseClientService.Initializer()
      {
          ApiKey = "API KEY ",
          ApplicationName = "YouTubeUpload"
      });

      var searchListRequest = youtubeService.Search.List("snippet");
      searchListRequest.Q = "T52cSiV4vV8"; // Replace with your search term.
      searchListRequest.MaxResults = 50;

      // Call the search.list method to retrieve results matching the specified query term.
      var searchListResponse = await searchListRequest.ExecuteAsync();

      List<string> videos = new List<string>();
      List<string> channels = new List<string>();
      List<string> playlists = new List<string>();
      foreach (var searchResult in searchListResponse.Items)
      {
        switch (searchResult.Id.Kind)
        {
          case "youtube#video":
            videos.Add(String.Format("{0} ({1})", searchResult.Snippet.Title, searchResult.Id.VideoId));
            break;

          case "youtube#channel":
            channels.Add(String.Format("{0} ({1})", searchResult.Snippet.Title, searchResult.Id.ChannelId));
            break;

          case "youtube#playlist":
            playlists.Add(String.Format("{0} ({1})", searchResult.Snippet.Title, searchResult.Id.PlaylistId));
            break;
        }
      }

      Console.WriteLine(String.Format("Videos:\n{0}\n", string.Join("\n", videos)));
      Console.WriteLine(String.Format("Channels:\n{0}\n", string.Join("\n", channels)));
      Console.WriteLine(String.Format("Playlists:\n{0}\n", string.Join("\n", playlists)));
    }
  }
}

При выполнении приведенного выше кода я получаю снимок экрана исключения исключения "Bad Request 400"

Я что-то пропустил??

1 ответ

Вам нужно установить поле "ApiKey" с помощью своего API-ключа в Google Console Developer

Сначала включите API данных Youtube в свой проект, а затем создайте учетные данные, чтобы получить свой APIKey.

Другие вопросы по тегам