youtube_integration 1.0.1
youtube_integration: ^1.0.1 copied to clipboard
A Dart package that provides an easy-to-use interface for accessing the YouTube Data API. Fetch videos, playlists, channel details, comments, and more with minimal setup.
๐บ youtube_integration #
A Dart package that simplifies integration with the YouTube Data API.
Easily fetch videos, playlists, channel details, comments, and more โ all in a clean and developer-friendly way.
โจ Features #
- ๐ Search for YouTube videos.
- ๐บ Fetch videos from a specific channel.
- ๐ Retrieve playlists of a channel.
- ๐๏ธ Get all videos from a playlist.
- ๐งพ Fetch video details (statistics, title, etc).
- ๐ฌ Fetch comments on a video.
- ๐ Get full channel details.
๐ Getting Started #
1. Add dependency to pubspec.yaml
: #
dependencies:
youtube_integration: <LATEST_VERSION>
2. Enable the YouTube Data API: #
Go to Google Cloud Console
โ Enable the YouTube Data API v3.
3. Create an API key: #
Generate an API key from API Credentials Page.
๐งช Usage #
import 'package:youtube_integration/youtube_integration.dart';
final youtube = YouTubeIntegration(apiKey: 'YOUR_API_KEY');
// Fetch videos from a channel
final videos = await youtube.fetchChannelVideosByID(channelId: 'CHANNEL_ID');
// Search videos
final results = await youtube.searchVideos(query: 'flutter tutorials');
You can also:
- Fetch channel details
- Get playlist videos
- Get video details
- Fetch video comments
๐ Documentation #
Check the full documentation in the GitHub repo.
๐ก Tip #
You can paginate results using nextPageToken
available in the API responses.
๐ License #
This package is open-source and licensed under the MIT License.
๐ Contributing #
Pull requests and issues are welcome!
Feel free to open an issue or submit a PR on GitHub.