emanuel-braz / flutter_insta

Package to get details of the Instagram user and download reels video.

Home Page:https://pub.dev/packages/flutter_insta

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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}");

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

About

Package to get details of the Instagram user and download reels video.

https://pub.dev/packages/flutter_insta

License:MIT License


Languages

Language:Dart 98.5%Language:Java 1.5%