Skip to content

Simple YouTube search api from scratch

Notifications You must be signed in to change notification settings

Shiroechi/YouTubeSearchApi-Java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

Stars

Watchers

Forks

Sponsor this project

Contributors 3

  •  
  •  
  •  

Languages