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.