flutter_insta 1.0.0 copy "flutter_insta: ^1.0.0" to clipboard
flutter_insta: ^1.0.0 copied to clipboard

Flutter package to get instagram user's details such as profile picture url,number of followers,following,Bio,website and download reels video.

Flutter package to get Instagram user details and download reels videos.

How to Use #

To use flutter_insta, first start by importing the package.

import 'package:flutter_insta/flutter_insta.dart';

Get profile details #

FlutterInsta flutterInsta = new FlutterInsta();
await flutterInsta.getProfileData("coding_boy_); //instagram username

Print Details

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 #

String downloadLink =  await flutterInsta.downloadReels("https://www.instagram.com/reel/CDlGkdZgB2y/"); //URL

Example #

Click here for more Example

Created by Viral Vaghela

183
likes
110
pub points
86%
popularity

Publisher

verified publishercodingboy.in

Flutter package to get instagram user's details such as profile picture url,number of followers,following,Bio,website and download reels video.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on flutter_insta