Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

sachin-handiekar/jInstagram

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note: jInstagram will no longer be supporting the new Instagram Graph API. Please use RestFB library to interact with the new Graph API (https://restfb.com/)

jInstagram Build Status Maven Central javaDoc Coverage Status Coverity Scan Build Status Join the chat at https://gitter.im/sachin-handiekar/jInstagram

A java library for the Instagram API.

An unofficial Java library for the Instagram API.

Note : jInstagram uses code from the scribe-java library developed by Pablo Fernandez.

  • Maven Integration

If you're using Maven in your project, then you can integrate jInstagram by adding the following dependency in your pom.xml

<dependency>
   <groupId>com.sachinhandiekar</groupId>
   <artifactId>jInstagram</artifactId>
   <version>1.2.2</version>
</dependency>

If you prefer using the latest snapshot build, include the following lines to your pom.xml.

    <repositories>
        <repository>
            <id>oss.snapshots</id>
            <name>OSS Sonatype Snapshot Repository</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>com.sachinhandiekar</groupId>
            <artifactId>jInstagram</artifactId>
             <version>1.2.3-SNAPSHOT</version>
        </dependency>
    </dependencies>

You can also integrate jInstagram by adding the following jar files in your project -

Please see the API Usage for more details.

Please see the Realtime API Usage for more details.

Please see the sample project to see a working example of jInstagram integration.

Please see the development guide.

Please see the wiki link for a list of projects using jInstagram.

Please check the license file.