https://github.com/viralvaghela/flutter_insta
Package to get details of the Instagram user and download reels video.
https://github.com/viralvaghela/flutter_insta
dart-insta flutter flutter-insta flutter-instagram flutter-plugin flutter-plugins instagram-api
Last synced: 4 months ago
JSON representation
Package to get details of the Instagram user and download reels video.
- Host: GitHub
- URL: https://github.com/viralvaghela/flutter_insta
- Owner: viralvaghela
- License: mit
- Created: 2020-07-25T06:02:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-01T15:09:28.000Z (almost 3 years ago)
- Last Synced: 2025-02-11T04:12:39.080Z (8 months ago)
- Topics: dart-insta, flutter, flutter-insta, flutter-instagram, flutter-plugin, flutter-plugins, instagram-api
- Language: C++
- Homepage: https://pub.dev/packages/flutter_insta
- Size: 713 KB
- Stars: 60
- Watchers: 5
- Forks: 41
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Flutter package to get Instagram user details and download reels videos.
## How to Use
##### To use flutter_insta, first start by importing the package.
```dart
import 'package:flutter_insta/flutter_insta.dart';
```##### Get profile details
```dart
FlutterInsta flutterInsta = new FlutterInsta();
await flutterInsta.getProfileData("coding_boy_"); //instagram username
```##### Print Details
```dart
print("Username : ${flutterInsta.username}");
print("Followers : ${flutterInsta.followers}");
print("Folowing : ${flutterInsta.following}");
print("Bio : ${flutterInsta.bio}");
print("Website : ${flutterInsta.website}");
print("Profile Image : ${flutterInsta.imgurl}");
print("Feed images":${flutterInsta.feedImagesUrl}");
```##### Download Reels video
```dart
String downloadLink = await flutterInsta.downloadReels("https://www.instagram.com/reel/CDlGkdZgB2y/"); //URL
```##### Example
[Click here for more Example](https://pub.dev/packages/flutter_insta/example)

##### Important Note
There is a limitation by Instagram, not sure how much but if you reach 'X' number of API call requests in an hour then you won't get response data and you have to wait for some time, So during development avoid widget rebuild as much as possible. :)
Created by [Viral Vaghela](https://www.linkedin.com/in/viralv/)