Awesome
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
A java library for the Instagram API.
<a name="toc">Table of Contents</a>
- Introduction
- How to Use
- Instagram Endpoints
- Instagram Realtime
- Code Examples
- Development
- Projects using jInstagram
- License
<a name="introduction">Introduction</a> ↑
An unofficial Java library for the Instagram API.
Note : jInstagram uses code from the scribe-java library developed by Pablo Fernandez.
<a name="how-to-use">How to Use</a> ↑
- 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 -
<a name="instagram-endpoints">Instagram Endpoints</a> ↑
Please see the API Usage for more details.
<a name="instagram-realtime">Instagram Realtime</a> ↑
Please see the Realtime API Usage for more details.
<a name="code-examples">Code Examples</a> ↑
Please see the sample project to see a working example of jInstagram integration.
<a name="development">Development</a> ↑
Please see the development guide.
<a name="projects-using-jinstagram">Projects using jInstagram</a> ↑
Please see the wiki link for a list of projects using jInstagram.
<a name="license">License</a> ↑
Please check the license file.