All Projects → Nerixyz → instagram_private_api

Nerixyz / instagram_private_api

Licence: other
An Instagram-Client written in Dart

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to instagram private api

isave-app
Instagram tool to download image, video and reels - App
Stars: ✭ 17 (-56.41%)
Mutual labels:  instagram, instagram-api
InstaLV
Live stream from desktop to Instagram
Stars: ✭ 27 (-30.77%)
Mutual labels:  instagram, instagram-api
Insta flters with python
With this program you can add hat & glass on your face(it's support multiple faces)
Stars: ✭ 21 (-46.15%)
Mutual labels:  instagram, instagram-api
instagram-oauth-nodejs-server
Node.js server for Intagram-API OAuth purpose.
Stars: ✭ 12 (-69.23%)
Mutual labels:  instagram, instagram-api
kirby3-instagram
Kirby 3 Plugin to call Instagram (or any other) API Endpoints
Stars: ✭ 20 (-48.72%)
Mutual labels:  instagram, instagram-api
InstaLite
Instagram api not official easy-to-use class, minimal number of features
Stars: ✭ 72 (+84.62%)
Mutual labels:  instagram, instagram-api
instragram-follow
Automatically follow Instagram accounts
Stars: ✭ 23 (-41.03%)
Mutual labels:  instagram, instagram-api
Brutegram
Instagram multi-bruteforce Platfrom
Stars: ✭ 183 (+369.23%)
Mutual labels:  instagram, instagram-api
Flutter-Photoarc-app
(Full-stack) Fully functional social media app (Instagram clone) written in flutter and dart with backend node.js and Postgres SQL.
Stars: ✭ 38 (-2.56%)
Mutual labels:  instagram, instagram-api
instagram-api-clone
Instagram RESTful API clone made with Django REST framework
Stars: ✭ 56 (+43.59%)
Mutual labels:  instagram, instagram-api
MyIGBot
MyIGBot is a Private API for Instagram to like, follow, comment, view & intaract with stories, upload post & stories, get all information about a user/posts and get posts based on locations/hashtags. It also supports proxy.
Stars: ✭ 137 (+251.28%)
Mutual labels:  instagram, instagram-api
go-instagram
Instagram private API in Go
Stars: ✭ 71 (+82.05%)
Mutual labels:  instagram, instagram-api
instagram-token-agent
A service to keep your Instagram Basic Display API token fresh.
Stars: ✭ 118 (+202.56%)
Mutual labels:  instagram, instagram-api
Instagram-Scraper-2021
Scrape Instagram content and stories anonymously, using a new technique based on the har file (No Token + No public API).
Stars: ✭ 57 (+46.15%)
Mutual labels:  instagram, instagram-api
jekyll-instagram
A Jekyll plugin for displaying your recent Instagram photos
Stars: ✭ 24 (-38.46%)
Mutual labels:  instagram, instagram-api
nanogram.js
📷 An easy-to-use and simple Instagram package that allows you to fetch media content without API and access token.
Stars: ✭ 62 (+58.97%)
Mutual labels:  instagram, instagram-api
Instagram Proxy Api
CORS compliant API to access Instagram's public data
Stars: ✭ 245 (+528.21%)
Mutual labels:  instagram, instagram-api
instapi
📷 Python Instagram API
Stars: ✭ 33 (-15.38%)
Mutual labels:  instagram, instagram-api
igFame
📷 igFame - Tool for automated Instagram interactions [PHP]
Stars: ✭ 16 (-58.97%)
Mutual labels:  instagram, instagram-api
FCommunity
multi Checkers (Hma/Hulu/Spotify/Call of duty/Instagram/smtp2go/VyprVpn) in One Tool Named FCommunity
Stars: ✭ 26 (-33.33%)
Mutual labels:  instagram, instagram-api

instagram_private_api

there's currently no pub-package, so you'll have to build it yourself Current version: 0.0.1 (somewhat early alpha)

This library is heavily influenced by dilame's instagram-private-api. The basic structure is very similar to it.

Usage

Future<void> main() async {
 /// get username and password from the environment-variables
 final env = Platform.environment;
 final username = env['IG_USERNAME'];
 final password = env['IG_PASSWORD'];

 final StateStorage storage = /* create the storage */;
 final InstaClient ig = InstaClient();
 /// this will ensure, the state is saved after each request
 ig.request.httpClient.interceptors.add(
     ResponseInterceptor(ig, (json) => storage.saveState(jsonEncode(json))));

 if (!await storage.exists()) {
   /// generate default values for the state
   ig.state.init();
   await storage.createState();
   await ig.account.login(username, password);
 } else {
   /// load the state, and you're good to go
   ig.state = InstaState.fromJson(jsonDecode(await storage.loadState()));
 }

 print('logged in!');
}

/// An example state-storage
mixin StateStorage {
 FutureOr<bool> exists();

 FutureOr<void> createState();

 FutureOr<String> loadState();

 FutureOr<void> saveState(String encodedState);
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].