youtube_api_v3 0.0.3 copy "youtube_api_v3: ^0.0.3" to clipboard
youtube_api_v3: ^0.0.3 copied to clipboard

Flutter package for Youtube API v3.Fetch data from Youtube using API

Youtube API v3 (youtube_api3) #

Flutter package for Youtube API v3.

v0.0.3 Added support for Videos(by id)

API's supported with parameters #

  • PlaylistItems
    • playlistId
    • part
      • snippet
      • id
      • contentDetails
      • status
    • maxResult
    • pageToken
  • Videos
    • id
    • part
      • snippet
      • id
      • contentDetails
      • status

Getting Started #

To use this package, add the dependency to your pubspec.yaml file

dependencies:
  ...
  youtube_api_v3: ^0.0.3

Usage #

import 'package:youtube_api_v3/youtube_api_v3.dart';
YoutubeAPIv3 api = new YoutubeAPIv3({key});
/// List of videos from playlist
PlayListItemListResponse playlist = await api.playListItems2(
    playlistId:{playlistId},
    maxResults:{maxResults},
    part:Parts.{part});

List<PlayListItem> videos = playlist.items;
/// Next Page
PlayListItemListResponse page2 = await playlist.nextPage();
List<PlayListItem> videospage2 = page2.items;
8
likes
40
pub points
28%
popularity

Publisher

unverified uploader

Flutter package for Youtube API v3.Fetch data from Youtube using API

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter, http

More

Packages that depend on youtube_api_v3