Cutta / materialup

Unofficial MaterialUp API Wrapper for Android.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Material Up Api Wrapper

Unofficial Material Up API Wrapper for Android.

Usage

Get popular posts:

MaterialUp.getPosts(page, MaterialUp.SORT.POPULAR, new MaterialUpCallback() {
    @Override
	public void onSuccess(List <Post> posts, Response response) {
		// do stuff with posts!
	}

	@Override
	public void onFailure(Request request, IOException e) {
		// show a toast!

	}
});

Get latest posts:

MaterialUp.getPosts(page, MaterialUp.SORT.LATEST, new MaterialUpCallback() {
    @Override
	public void onSuccess(List <Post> posts, Response response) {
		// do stuff with posts!
	}

	@Override
	public void onFailure(Request request, IOException e) {
		// show a toast!

	}
});

Download

Gradle:

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    // ... other dependencies here
    compile'com.github.Alelak:materialup:1.1.3'
}

About

Unofficial MaterialUp API Wrapper for Android.

License:MIT License


Languages

Language:Java 100.0%