Skip to content

mthli/Dribbble4J

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Dribbble4J

Dribbble API(v1) for Java.

How to use the library?

You need to get a AccessToken with suitable permission(scope).

And then, for example, check if you like a shot:

...

Dribbble dribbble = new Dribbble(ACCESS_TOKEN);

ShotService service = dribbble.getShotService();

try {
    System.out.printlin(
        service.isShotLike(SHOT_ID);
    );
} catch(ResponseExpception r) {
    /* Do something here */
}

...

Download latest jar.

Attentions:

I have no time to complete the Javadoc and some tests, but with the Dribbble API(v1) you can get the clear struct of the source code.

So welcome pull request!!!

How to use the source code?

Just import the Dribbble4J folder with your IntelliJ IDEA.

Thanks:

And thanks Dribbble for a player account so that I have the permission to complete upload methods :)

License:

Apache License, Version 2.0