youtube_api

Creator: coderz1093

Last updated:

Add to Cart

Description:

youtube api

YouTube API (youtube_api) #

A Flutter plugin for fetching interacting with YouTube Server to fetch data using API. Supports iOS and Android.
Features: #

Search Video, Playlist, Channel on YouTube.
Get Trending Videos based on region code.

Usage #
To use this plugin, add youtube_api as a dependency in your pubspec.yaml file.
Complete Example Code
Example #


static String key = 'YOUR_API_KEY';
YoutubeAPI ytApi = new YoutubeAPI(key);
List<YouTubeVideo> videoResult = [];
copied to clipboard
To search for videos or Channels-
String query = "Flutter";
videoResult = await ytApi.search(query);
// data which are available in videoResult are shown below
copied to clipboard
To get Trending videos in your Country-
regionCode='YOUR_COUNTRY_REGION_CODE(apha-2)';
videoResult = await ytApi.getTrends(regionCode);
//make sure you assign alpha-2 region code
copied to clipboard
You can find your Country Region Code here
These data are stored in videoResult
[
{
"kind": "video",
"id": "9vzd289Eedk",
"channelTitle": "Java",
"title": "WEBINAR - Programmatic Trading in Indian Markets using Python with Kite Connect API",
"description": "For traders today, Python is the most preferred programming language for trading, as it provides great flexibility in terms of building and executing strategies.",
"publishedAt": "2016-10-18T14:41:14.000Z",
"channelId": "UC8kXgHG13XdgsigIPRmrIyA",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/9vzd289Eedk/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/9vzd289Eedk/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/9vzd289Eedk/hqdefault.jpg",
"width": 480,
"height": 360
}
},
"channelurl": "https://www.youtube.com/channel/UC8kXgHG13XdgsigIPRmrIyA",
"url": "https://www.youtube.com/watch?v=9vzd289Eedk"
},
{
"kind": "video"
// Data for your next result in a similar way
},
{
// Data for your next result in a similar way
"url": "https://www.youtube.com/watch?v=9vzd289Eedk"
}
]
copied to clipboard
Default per-page result is 10 .
If you want search any specif out i.e video or playlist or channel.
For Channel only specify > Type : "channel"
For Video only specify > Type : "video"
For Playlist only specify > Type : "playlist"
maxResults(int) can be 1 - 50

int max = 25;

String type = "channel";

YoutubeAPI ytApi = new YoutubeAPI(key, maxResults: max, Type: type);

copied to clipboard
Feedback welcome and
Pull Requests are most welcome!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.