Code Monkey home page Code Monkey logo

instagram4j's Introduction

instagram4j

Java CI with Gradle Apache License Discord

๐Ÿ“ท Java wrapper using OkHttpClient for Instagram's private api (Android emulation)

Table of contents

Install

Example for gradle:

dependencies {
    implementation 'com.github.instagram4j:instagram4j:2.0.7'
}

Example for maven:

  <dependencies>
    <dependency> 
      <groupId>com.github.instagram4j</groupId>
      <artifactId>instagram4j</artifactId>
      <version>2.0.7</version>
    </dependency> 
  </dependencies>

For develop (unreleased to central) builds, jitpack can be used.

repositories {
    maven {
        url 'https://jitpack.io'
    }
}
dependencies {
    implementation 'com.github.instagram4j:instagram4j:master-SNAPSHOT'
}

Example for maven:

  ...
  <dependencies>
      ...
    <dependency> 
      <groupId>com.github.instagram4j</groupId>
      <artifactId>instagram4j</artifactId>
      <version>master-SNAPSHOT</version>
    </dependency> 
  </dependencies>
  ...
  <repositories>
    ...
    <repository>
      <id>jitpack</id>
      <url>https://jitpack.io</url>   
    </repository>
 </repositories>

Requirements

This project depends on

  • Java 8+
  • okhttpclient
  • okhttpclient url connection
  • jackson data-bind
  • jackson annotations
  • slf4j-api
  • apache commons codec

Overview

This Java library provides requests that emulate the Android Instagram app. Most of the official app functionality is supported here. This library has undergone a massive rewrite (instagram4j 1.x.x is not compatible) The rewrite intends to help with maintainability and flexibility throughout time.

Features

Most of the Android Instagram app features are supported. Here are some notable ones.

  • OkHttpClient and jackson-databind
  • two factor login
  • support for challenges
  • iterable feeds
  • serialization
  • timeline, story, live, direct messaging, shopping, and more!

Usage

Terms and Conditions

This library is intended for personal use and for educational experiences due to limitations of Instagram's public API.

  • Please use Instagram's public API if possible
  • Do not use this library to spam (botting, spam messaging, etc...)
  • There will be no support for those with malicious intent
  • Use reasonable (human) delay in between sending requests
  • Don't be evil.

This library is in no way affiliated with, authorized, maintained, sponsored or endorsed by Instagram or any of its affiliates or subsidiaries. This is an independent and unofficial API. Use at your own risk.

Contributors are not responsible for usage and maintainability. Due to the nature of this project, some features of the library are not guaranteed as they make change and break in the future. This library is licensed under ASL.


Quick Usage

Login:

IGClient client = IGClient.builder()
        .username("username")
        .password("password")
        .login();

Actions:

IGClient client = ...

client.actions()
.timeline()
.uploadPhoto(new File("myPhoto.jpg"), "My Caption")
.thenAccept(response -> {
    System.out.println("Successfully uploaded photo!");
})
.join(); // block current thread until complete

Executing requests:

IGClient client = ...

// Alternatively use client.sendRequest
new FeedTimelineRequest().execute(client)
.thenAccept(response -> {
    response.getFeed_items().forEach(...);
})
.join(); // block current thread until complete

Setup and Login

An IGClient instance must be constructed and logged in to send most requests.

Simple Login

Basic login using IGClient builder method.

Example:

IGClient client = IGClient.builder()
        .username("username")
        .password("password")
        .login();

Example:

// simulate pre login flow (synchronous) and post login flow (asynchronous)
IGClient client = IGClient.builder()
        .username("username")
        .password("password")
        .simulatedLogin();

Two factor login

Provide a consumer that may resolve two factor login process. The example uses the included utility to resolve two factor logins.

Example:

Scanner scanner = new Scanner(System.in);

// Callable that returns inputted code from System.in
Callable<String> inputCode = () -> {
    System.out.print("Please input code: ");
    return scanner.nextLine();
};

// handler for two factor login
LoginHandler twoFactorHandler = (client, response) -> {
    // included utility to resolve two factor
    // may specify retries. default is 3
    return IGChallengeUtils.resolveTwoFactor(client, response, inputCode);
};

IGClient client = IGClient.builder()
        .username("username")
        .password("password")
        .onTwoFactor(twoFactorHandler)
        .login();

Challenge login

Sometimes a challenge may arise when logging in. Provide a LoginHandler to handle challenges. The example uses the included utility to handle challenges automatically.

Example:

Scanner scanner = new Scanner(System.in);

// Callable that returns inputted code from System.in
Callable<String> inputCode = () -> {
    System.out.print("Please input code: ");
    return scanner.nextLine();
};

// handler for challenge login
LoginHandler challengeHandler = (client, response) -> {
    // included utility to resolve challenges
    // may specify retries. default is 3
    return IGChallengeUtils.resolve(client, response, inputCode);
};

IGClient client = IGClient.builder()
        .username("username")
        .password("password")
        .onChallenge(challengeHandler)
        .login();

Login with proxy

You may provide Proxy and Authenticator for the Proxy through configuring an OkHttpClient and passing it in through the builder.

OkHttpClient httpClient = new OkHttpClient.Builder().proxy(...).build();
IGClient client = IGClient.builder()
        .username("username")
        .password("password")
        .client(httpClient)
        .login();

Sending requests and actions

This library provides a limited wrapper api that may be used to locate and send common requests. Not all features are supported through actions currently. Actual requests are located under the requests package and can be sent through IGClient like in previous versions. Requests can be sent asynchronously. All requests return a CompletableFuture.

Simple Example:

IGClient client = ...

client.actions().timelime()
.uploadPhoto(new File("myPhoto.jpg"), "My Caption")
.thenAccept(res -> {
    // perform actions with response
    log.info("Uploaded photo {}", response.getMedia().getId());
})
.exceptionally(tr -> {
    // something has terribly gone wrong!
    // handle exception
    
    return null;
})
.join(); // blocks currect thread until completion

Chainng Example:

IGClient client = ...

// finds user by username then gets friendship status
client.actions().users()
.findByUsername("instagram")
.thenCompose(UserAction::getFriendship)
.thenAccept(friendship -> {
    // response here
})
.join();

// uploads a photo then comments on it
client.actions().timeline()
.uploadPhoto(new File("myPhoto.jpg"), "My Caption")
.thenCompose(response -> {
    // action with response
    return new MediaCommentRequest(response.getMedia().getId(), "First comment!").execute(client)
})
.join();

Serialization

IGClient and cookies can serialize into two files out of the box.

IGClient client = ...
File clientFile = new File(...);
File cookieFile = new File(...);
// serializing
client.serialize(clientFile, cookieFile);
// deserializing
IGClient deserializedClient = IGClient.deserialize(clientFile, cookieFile);

IGClient is Serializable. The SerializableCookieJar used to store cookie's in OkHttpClient is Serializable as well. This opens to other mediums of storing serialization too, not just files.

Contributing

See Issues tab to find good starting issues to work on. If you have an addition you would like to make, please do not hesitate to make a pull request!

instagram4j's People

Contributors

athvu avatar axel7083 avatar berkedel avatar bondarenkoevgeny avatar bvolpato avatar cyrus07424 avatar danielepancottini avatar dependabot[bot] avatar dzianish avatar giorgosxou avatar gzsombor avatar jemand771 avatar jpleorx avatar jvogit avatar kolobych avatar krismorte avatar mahirkole avatar masecla22 avatar mokhtarabadi avatar ostylk avatar ozankaraali avatar panyukovnn avatar rodionkorneev avatar rushmedev avatar tayfunyasar avatar taz03 avatar thedelisle avatar unldenis avatar westy92 avatar winside avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.