Skip to content
This repository was archived by the owner on Feb 4, 2019. It is now read-only.

Doc94/RevloAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RevloAPI

RevloAPI brings Revlo and Java Plataform together. This is made for developers that want to use Revlo on their Java Projects to get Information in reference to Revlo API. Based in RevloDocumentation

Installation

RevloAPI is distributed as a maven project. To compile it and install it in your local Maven repository (.m2) use:

git clone https://github.com/Doc94/RevloAPI.git
cd RevloAPI
mvn clean install

Basic Example

Here show a basic example for use the API (More examples in wiki)

package net.mrdoc.examplerevloapi;

import net.mrdoc.revloapi.exception.RevloException;

/**
 * Created by Doc on 10-01-2017.
 *
 * @author Doc
 */
public class RevloExample {

    /**
     * AutoRun this
     * @param args not need here
     */
    public static void main(String[] args) {
        try {
            RevloAPI api = new RevloAPI("MyAPIKey"));
            
            //i need see debug code (?
            api.setDEBUGMODE(true);
        } catch (RevloException e) {
            e.printStackTrace();
        }
    }
}

About

Maven Java library for RevloAPI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages