A java library for the Instagram API.
- Introduction
- How to Use
- Instagram Endpoints
- Instagram Realtime
- Code Examples
- Development
- Projects using jInstagram
- License
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.