ErrorxCode / EasyInsta

A Java library of Instagram's private API and wrapper of instagram4j. Surf Instagram programmatically, build bots, and a lot more. Just a line of code for every operation.
Apache License 2.0
46 stars 10 forks source link

How can I use Maven and Springboot to test the library #28

Closed HenryGyu closed 1 year ago

HenryGyu commented 1 year ago

I want to deploy a springboot program on a Linux server to use the library, but I couldn't find the Maven configuration in the central repository

ErrorxCode commented 1 year ago

Step 1 : Add repository:-

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.ErrorxCode</groupId>
    <artifactId>EasyInsta</artifactId>
    <version>2.9.2</version>
</dependency>