June 15, 2016

RestGitHub

restgithubRestGitHub is a free and flexible Java library for GitHub based on Retrofit (A type-safe HTTP client for Android and Java) and GitHub REST API.

RestGitHub is an opensourced software and free of charge.
You can use RestGitHub freely for any commercial and non-commercial projects.

https://github.com/pawlidim/restgithub

 

How To Use

Add restgithub jar file to your application classpath. The following example shows the basic usage of this library. Create new GitHub object with  authentification method. In this example we use the basic method. It possible to use the access token. Read more

//create git hub service with basic authentification method
GitHub gitHub = new GitHub("username", "password");

//get git hub user service
GitHubUserService userService = gitHub.getUserService();

// get git hub user with login name pawlidim
User user = userService.getUserForName("pawlidim");

Download

Last release

Source Code

Check out the latest source code from repository.

 git clone git://github.com/pawlidim/restgithub.git

License

RestGitHub is released under Apache License 2.0.

Leave a Reply

Your email address will not be published. Required fields are marked *

*