Shiroechi / YouTubeSearchApi-Java

Simple YouTube search api from scratch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YouTube Search API

Simple library for searching YT video

Badges

CodeFactor

How to use

String key = "api key";

YouTubeSearchClient client = new YouTubeSearchClient(key);

String output = client.Search("anime", "snippet", "video", 10);

System.out.println(output);

the output will give 10 video with "anime" keyword in JSON format.

or if you don't have api key use this:

YoutubeClient client = new YoutubeClient();

List<YoutubeVideo> video = client.search("anime", 5);

this will give 5 video with "anime" keyword.

Build

  • Build with JDK 8

Donation

ko-fi

About

Simple YouTube search api from scratch


Languages

Language:Java 100.0%