Skip to content

First stable version

Compare
Choose a tag to compare
@yegor256 yegor256 released this 12 Nov 16:18
· 2922 commits to master since this release

This is the first version that enables true object oriented interaction with Github API v3, for example:

public class Main {
  public static void main(String[] args) {
    Github github = new Github.Simple(".. your OAuth token ..");
    Repo repo = github.repo("jcabi/jcabi-github");
    Issue issue = repo.issues().create("How are you?", "Please tell me...");
    issue.post("My first comment!");
  }
}