Github API access via java client

4.7k Views Asked by At

I want to write a simple java program or client which can get count of all the commits done by users.

How can I write it? Ie, How to use Github APi's in our code so I get the right result?
There are some API's present, but can somebody give example as to how to use it in java client?

1

There are 1 best solutions below

0
On

I explained before that counting all the commits of a repo isn't available in GitHub API for commits.

However, the GitHub API for Statistics proposes a contributor call with a total field which can be interesting.

total

The Total number of commits authored by the contributor.

From the GitHub libraries pages, you can call this API in Java with: