2013-01-19 51 views
0

我想使用githubapi來獲取剩餘的請求,但client.getRemainingrequests返回-1。我後我的代碼波紋管java githubApi getRemaining請求

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

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

+1與世界分享你的用戶名和密碼:) –

+0

伊萬,如果你沒有答案不要浪費我的時間和你的,我做錯了,複製粘貼我拿我的憑據,但相信我沒有人關心我的github憑證。 – fchatzia

回答

0

嘗試jcabi-github代替:

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

更簡單,面向對象的。