0

我正在尝试使用 githubapi 来获取剩余的请求,但 client.getRemainingrequests 返回 -1。我在下面发布我的代码

    UserService userService = new UserService();
    GitHubClient client = new GitHubClient();
    client = userService.getClient().setCredentials("#######@gmail.com", "#####");;

    System.out.println("remaining requests:"+client.getRequestLimit());
4

1 回答 1

0

改用 jcabi -github

Github github = new RtGithub(oauth_token);
int remaining = github.limits().get("core").json().getInt("remaining");

更简单和面向对象。

于 2014-02-19T03:21:16.340 回答